Skip to content

Commit 25fb052

Browse files
committed
Support Pyton 3.14
1 parent 5efff16 commit 25fb052

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v6
1414
- uses: actions/setup-python@v6
1515
with:
16-
python-version: "3.13"
16+
python-version: "3.14"
1717
- run: pip install tox
1818
- run: tox -e docs
1919
tests:
@@ -24,11 +24,11 @@ jobs:
2424
matrix:
2525
include:
2626
- { name: "3.10-pymongo3", python: "3.10", tox: py310-pymongo3 }
27-
- { name: "3.13-pymongo4", python: "3.13", tox: py313-pymongo4 }
27+
- { name: "3.14-pymongo4", python: "3.14", tox: py314-pymongo4 }
2828
- { name: "3.10-motor", python: "3.10", tox: py310-motor }
29-
- { name: "3.13-motor", python: "3.13", tox: py313-motor }
29+
- { name: "3.14-motor", python: "3.14", tox: py314-motor }
3030
- { name: "3.10-txmongo", python: "3.10", tox: py310-txmongo }
31-
- { name: "3.13-txmongo", python: "3.13", tox: py313-txmongo }
31+
- { name: "3.14-txmongo", python: "3.14", tox: py314-txmongo }
3232
steps:
3333
- uses: actions/checkout@v6
3434
- name: Start MongoDB
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v6
5353
- uses: actions/setup-python@v6
5454
with:
55-
python-version: "3.13"
55+
python-version: "3.14"
5656
- name: Install pypa/build
5757
run: python -m pip install build
5858
- name: Build a binary wheel and a source tarball
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/checkout@v6
7676
- uses: actions/setup-python@v6
7777
with:
78-
python-version: "3.13"
78+
python-version: "3.14"
7979
- run: python -m pip install tox
8080
- run: python -m tox -e lint
8181
publish-to-pypi:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
'Programming Language :: Python :: 3.11',
2222
'Programming Language :: Python :: 3.12',
2323
'Programming Language :: Python :: 3.13',
24+
'Programming Language :: Python :: 3.14',
2425
'Programming Language :: Python :: 3 :: Only',
2526
]
2627
requires-python = ">=3.10"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py{310,311,312,313}-{motor,pymongo3,pymongo4,txmongo}
2+
envlist = lint,py{310,311,312,313,314}-{motor,pymongo3,pymongo4,txmongo}
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)