From 0343029877e28ae48e5ad492afab60f43f4900bb Mon Sep 17 00:00:00 2001 From: Dave Brondsema Date: Mon, 18 Aug 2025 18:05:54 -0400 Subject: [PATCH] mark support for python 3.14 --- .github/workflows/main.yml | 1 + setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f15b33..448c7ec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,7 @@ jobs: - '3.11' - '3.12' - '3.13' + - '3.14' services: mongodb: diff --git a/setup.py b/setup.py index d4a12fb..e167ff7 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', "Topic :: Software Development :: Libraries :: Python Modules", ], python_requires='>=3.9', diff --git a/tox.ini b/tox.ini index 98de1f1..020b134 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py{39,310,311,312,313} +envlist = py{39,310,311,312,313,314} [testenv] commands = pytest {posargs}