Skip to content

Commit c7fa18e

Browse files
authored
feat: support python 3.14 (#566)
Adds support for the newly released Python 3.14.
1 parent 36670bd commit c7fa18e

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version:
15+
- "3.9"
16+
- "3.10"
17+
- "3.11"
18+
- "3.12"
19+
- "3.13"
20+
- "3.14"
1521

1622
name: Python ${{ matrix.python-version }}
1723
steps:

.gitlab-ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ test:
2626

2727
parallel:
2828
matrix:
29-
- python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
29+
- python_version:
30+
- "3.9"
31+
- "3.10"
32+
- "3.11"
33+
- "3.12"
34+
- "3.13"
35+
- "3.14"
3036

3137
image: python:${python_version}-alpine
3238
before_script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
3434
"Programming Language :: Python :: 3.13",
35+
"Programming Language :: Python :: 3.14",
3536
],
3637
python_requires=">=3.9",
3738
install_requires=[

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39, py310, py311, py312, py313
2+
envlist = py39, py310, py311, py312, py313, py314
33

44
[testenv]
55
passenv = FAKE_API_ENDPOINT
@@ -15,3 +15,4 @@ python =
1515
3.11: py311
1616
3.12: py312
1717
3.13: py313
18+
3.14: py314

0 commit comments

Comments
 (0)