Skip to content

Commit a024cf1

Browse files
Merge pull request #90 from codecov/th/remove-3.8
fix: remove python 3.8
2 parents da0e3b8 + e01cf35 commit a024cf1

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# It is tweaked by hand to use PyPI Trusted Publishers:
77
# https://www.maturin.rs/distribution#using-pypis-trusted-publishing
8-
name: CI
8+
name: Publish
99

1010
on:
1111
release:
@@ -30,7 +30,7 @@ jobs:
3030
uses: PyO3/maturin-action@v1
3131
with:
3232
target: ${{ matrix.target }}
33-
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
33+
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
3434
sccache: "true"
3535
manylinux: auto
3636
- name: Upload wheels
@@ -53,7 +53,7 @@ jobs:
5353
uses: PyO3/maturin-action@v1
5454
with:
5555
target: ${{ matrix.target }}
56-
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
56+
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
5757
sccache: "true"
5858
manylinux: musllinux_1_2
5959
- name: Upload wheels
@@ -77,7 +77,7 @@ jobs:
7777
uses: PyO3/maturin-action@v1
7878
with:
7979
target: ${{ matrix.target }}
80-
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
80+
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
8181
sccache: "true"
8282
- name: Upload wheels
8383
uses: actions/upload-artifact@v4
@@ -99,7 +99,7 @@ jobs:
9999
uses: PyO3/maturin-action@v1
100100
with:
101101
target: ${{ matrix.target }}
102-
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12'
102+
args: --release --out dist --interpreter '3.9 3.10 3.11 3.12'
103103
sccache: "true"
104104
- name: Upload wheels
105105
uses: actions/upload-artifact@v4

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ on:
22
push:
33
branches:
44
- main
5+
- release
56
pull_request:
67

78
jobs:
@@ -17,7 +18,7 @@ jobs:
1718
components: clippy, rustfmt
1819
- name: Lint
1920
run: make lint
20-
21+
2122
run_tests:
2223
strategy:
2324
matrix:
@@ -53,7 +54,7 @@ jobs:
5354
url: ${{ secrets.CODECOV_URL }}
5455
files: unit.junit.xml
5556
disable_search: true
56-
report_type: test-results
57+
report_type: test_results
5758

5859
- name: Upload results to codecov (Staging)
5960
if: ${{ !cancelled() }}
@@ -63,4 +64,4 @@ jobs:
6364
url: ${{ secrets.CODECOV_STAGING_API_URL }}
6465
files: unit.junit.xml
6566
disable_search: true
66-
report_type: test-results
67+
report_type: test_results

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_results_parser"
3-
version = "0.5.4"
3+
version = "0.6.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)