Skip to content

Commit 7651d2b

Browse files
authored
chore: update python versions in CI (#251)
1 parent 41f72b2 commit 7651d2b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,21 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, macos-latest, windows-latest]
43-
python-version: [3.9]
43+
python-version: ["3.12"]
44+
allow-prereleases: [false]
4445
include:
4546
- os: ubuntu-latest
46-
python-version: "3.12"
47+
python-version: "3.13"
48+
allow-prereleases: true
4749
- os: ubuntu-latest
4850
python-version: "3.11"
51+
allow-prereleases: false
4952
- os: ubuntu-latest
5053
python-version: "3.10"
54+
allow-prereleases: false
5155
- os: ubuntu-latest
5256
python-version: 3.8
57+
allow-prereleases: false
5358
runs-on: "${{ matrix.os }}"
5459
steps:
5560
- name: Harden Runner
@@ -72,6 +77,7 @@ jobs:
7277
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
7378
with:
7479
python-version: ${{ matrix.python-version }}
80+
allow-prereleases: ${{ matrix.allow-prereleases }}
7581

7682
- uses: dtolnay/rust-toolchain@bb45937a053e097f8591208d8e74c90db1873d07
7783
with:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
4+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
55
def test(session):
66
session.install("-rrequirements-dev.txt")
77
session.install("-e", ".", "--no-build-isolation")

0 commit comments

Comments
 (0)