Skip to content

Commit c1187d9

Browse files
committed
Update python versions used in github actions
- Remove Python 3.8 (which is already end-of-life for ~10 months) and add Python 3.13. - Update OS to `ubuntu-latest` instead of a fixed version
1 parent 9446e62 commit c1187d9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/test_with_pytest.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77

88
jobs:
99
test:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] # Test on multiple Python versions
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # Test on multiple Python versions
1414

1515
steps:
1616
- name: Checkout repository
@@ -20,8 +20,6 @@ jobs:
2020

2121
uses: actions/setup-python@v4
2222
with:
23-
# until saxonche is available in 3.13
24-
# https://saxonica.plan.io/issues/6561
2523
python-version: ${{ matrix.python-version }}
2624
- name: Display Python version
2725
run: python -c "import sys; print(sys.version)"

0 commit comments

Comments
 (0)