Skip to content

Commit 59038c8

Browse files
Minor updates to ensure we are supporting py3.9->3.13
1 parent 2dc948d commit 59038c8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
strategy:
174174
fail-fast: true
175175
matrix:
176-
python-version: ["3.9", "3.10", "3.11", "3.13"]
176+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
177177
runs-on: "ubuntu-24.04"
178178
env:
179179
PYTHON_VER: "${{ matrix.python-version }}"

docs/dev/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pull requests are welcomed and automatically built and tested against multiple versions of Python through GitHub Actions.
44

5-
Except for unit tests, testing is only supported on Python 3.9.
5+
Except for unit tests, testing is only supported on Python 3.13.
66

77
The project is packaged with a light development environment based on `Docker` to help with the local development of the project and to run tests within GitHub Actions.
88

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ classifiers = [
1313
"Intended Audience :: Developers",
1414
"Development Status :: 5 - Production/Stable",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2121
]
2222
include = [
2323
"LICENSE",
@@ -106,7 +106,7 @@ testpaths = "tests/"
106106
addopts = "-vv --doctest-modules -p no:warnings --ignore-glob='*mock*'"
107107

108108
[tool.mypy]
109-
python_version = 3.12
109+
python_version = 3.13
110110
ignore_errors = false
111111
disallow_untyped_calls = true
112112
disallow_untyped_defs = true

0 commit comments

Comments
 (0)