Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions setup/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
]

######################################
Expand Down
16 changes: 16 additions & 0 deletions tests/test_python_version_support.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from importlib.util import module_from_spec, spec_from_file_location
from pathlib import Path


def load_package_info_module():
package_info_path = Path(__file__).resolve().parents[1] / "setup" / "package_info.py"
spec = spec_from_file_location("package_info", package_info_path)
module = module_from_spec(spec)
assert spec.loader is not None
spec.loader.exec_module(module)
return module


def test_python_314_classifier_present():
package_info = load_package_info_module()
assert 'Programming Language :: Python :: 3.14' in package_info.CLASSIFIERS