Skip to content

Commit

Permalink
Test on Python 3.13, drop support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Dec 25, 2024
1 parent cd4b646 commit 828b612
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
# - name: >-
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repository = "https://github.com/Josef-Friedrich/mscxyz"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{39,310,311,312}, format, docs, lint, quick
envlist = py{310,311,312,313}, format, docs, lint, quick
isolated_build = True

[testenv]
Expand All @@ -12,7 +12,7 @@ passenv =
XAUTHORITY

[testenv:quick]
basepython = python3.9
basepython = python3.12
commands =
pytest -m "not (slow or gui)"

Expand Down Expand Up @@ -48,6 +48,7 @@ commands =
[gh-actions]
python =
3.9: py39
3.10: py310, format, docs, lint
3.10: py310
3.11: py311
3.12: py312
3.12: py312, format, docs, lint
3.13: py313

0 comments on commit 828b612

Please sign in to comment.