Skip to content

Commit bf85aae

Browse files
authored
Merge pull request #82 from cclauss/patch-1
GitHub Actions: Add Python 3.13 pre-release to the testing
2 parents a3257ca + eb78da7 commit bf85aae

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/python-test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,21 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-alpha - 3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
20+
allow-prereleases: true
2021
- name: Install dependencies
2122
run: |
2223
python -m pip install --upgrade pip
23-
pip install mock ruff
24+
pip install mock setuptools ruff
2425
- name: Test
2526
run: python setup.py test

0 commit comments

Comments
 (0)