Skip to content

Commit 970b45c

Browse files
authored
Fix the 3.7 CI job, add official 3.13 support, fix coverage upload (#92)
1 parent 3a18d1d commit 970b45c

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
env:
2020
TOXENV: py
2121
- python-version: "3.7"
22-
os: ubuntu-latest
22+
os: ubuntu-22.04
2323
env:
2424
TOXENV: py
2525
- python-version: "3.8"
@@ -42,12 +42,16 @@ jobs:
4242
os: ubuntu-latest
4343
env:
4444
TOXENV: py
45+
- python-version: "3.13"
46+
os: ubuntu-latest
47+
env:
48+
TOXENV: py
4549

4650
steps:
4751
- uses: actions/checkout@v4
4852

4953
- name: Set up Python ${{ matrix.python-version }}
50-
uses: actions/setup-python@v4
54+
uses: actions/setup-python@v5
5155
with:
5256
python-version: ${{ matrix.python-version }}
5357

@@ -61,4 +65,6 @@ jobs:
6165
run: tox
6266

6367
- name: Upload coverage report
64-
run: bash <(curl -s https://codecov.io/bash)
68+
uses: codecov/codecov-action@v5
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
'Programming Language :: Python :: 3.10',
3838
'Programming Language :: Python :: 3.11',
3939
'Programming Language :: Python :: 3.12',
40+
'Programming Language :: Python :: 3.13',
4041
'Topic :: Utilities',
4142
],
4243
)

0 commit comments

Comments
 (0)