Skip to content

Commit 0812bc0

Browse files
committed
CI: Add support for Python 3.13
1 parent 42cb1e2 commit 0812bc0

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

.github/workflows/tests.yml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Tests"
33
on:
44
push:
55
branches: [ main ]
6-
pull_request: ~
6+
pull_request:
77
workflow_dispatch:
88

99
concurrency:
@@ -21,7 +21,14 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: ['ubuntu-latest']
24-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
24+
python-version: [
25+
'3.8',
26+
'3.9',
27+
'3.10',
28+
'3.11',
29+
'3.12',
30+
'3.13',
31+
]
2532

2633
env:
2734
OS: ${{ matrix.os }}
@@ -85,7 +92,14 @@ jobs:
8592
fail-fast: false
8693
matrix:
8794
os: ['ubuntu-latest']
88-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
95+
python-version: [
96+
'3.8',
97+
'3.9',
98+
'3.10',
99+
'3.11',
100+
'3.12',
101+
'3.13',
102+
]
89103

90104
env:
91105
OS: ${{ matrix.os }}
@@ -140,7 +154,13 @@ jobs:
140154
fail-fast: false
141155
matrix:
142156
os: ['ubuntu-latest']
143-
python-version: ['3.9', '3.10', '3.11', '3.12']
157+
python-version: [
158+
'3.9',
159+
'3.10',
160+
'3.11',
161+
'3.12',
162+
'3.13',
163+
]
144164

145165
env:
146166
OS: ${{ matrix.os }}

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44
- Dependencies: Migrated from `zyp` to `tikray`. It's effectively the
55
same, but provided using a dedicated package now
6+
- CI: Added support for Python 3.13
67

78
## 2024/10/28 v0.0.22
89
- DynamoDB/Testing: Use CrateDB nightly again

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ classifiers = [
7272
"Programming Language :: Python :: 3.10",
7373
"Programming Language :: Python :: 3.11",
7474
"Programming Language :: Python :: 3.12",
75+
"Programming Language :: Python :: 3.13",
7576
"Programming Language :: Python :: Implementation :: CPython",
7677
"Programming Language :: Python :: Implementation :: PyPy",
7778
"Programming Language :: SQL",

0 commit comments

Comments
 (0)