Skip to content

Commit e42eb57

Browse files
committed
Run Python 3.13 in CI tests
1 parent 6522547 commit e42eb57

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ jobs:
114114
- "3.10"
115115
- "3.11"
116116
- "3.12"
117+
- "3.13"
117118

118119
steps:
119120
- uses: actions/checkout@v4
@@ -167,7 +168,8 @@ jobs:
167168
# - "3.9"
168169
# - "3.10"
169170
# - "3.11"
170-
- "3.12"
171+
- "3.12" # Comment out when 3.13 is final
172+
- "3.13"
171173
group: [1, 2]
172174

173175
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def should_update_common_wheels() -> bool:
6767
# -----------------------------------------------------------------------------
6868
# Development Commands
6969
# -----------------------------------------------------------------------------
70-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"])
70+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3"])
7171
def test(session: nox.Session) -> None:
7272
# Get the common wheels.
7373
if should_update_common_wheels():

0 commit comments

Comments
 (0)