Skip to content

Commit 8ee31e3

Browse files
authored
Test using Python 3.13 + drop Python 3.8 (#546)
1 parent ee59ae0 commit 8ee31e3

3 files changed

Lines changed: 167 additions & 279 deletions

File tree

.github/workflows/python-ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
1919
# https://devguide.python.org/versions/#supported-versions
2020
python-version:
21-
- "3.8"
2221
- "3.9"
2322
- "3.10"
2423
- "3.11"
2524
- "3.12"
25+
- "3.13"
2626

2727
steps:
2828
- uses: actions/checkout@v4
@@ -70,10 +70,12 @@ jobs:
7070
# https://coveralls-python.readthedocs.io/en/latest/usage/index.html
7171
# upload coverage report for just one of Python version matrix runs
7272
- name: Upload coverage report to Coveralls
73-
if: matrix.python-version == '3.9'
73+
if: matrix.python-version == '3.12'
7474
env:
7575
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76-
run: poetry run coveralls --service=github || true
76+
run: |
77+
pip install coveralls
78+
poetry run coveralls --service=github
7779
7880
- name: Lint with pylint
7981
run: make lint

0 commit comments

Comments
 (0)