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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os:
- ubuntu-latest
python-version:
["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", pypy3.9, pypy3.10]
["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", pypy3.11]

steps:
- uses: actions/checkout@v6
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -37,7 +36,7 @@ classifiers = [
"Environment :: Web Environment",
]

requires-python = ">=3.9"
requires-python = ">=3.10"

dynamic = ["version", "readme"]

Expand Down
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[tox]
envlist = lint,py{39,310,311,312,313},pypy3,manifest,coverage-report
envlist = lint,py{310,311,312,313,314,314t},pypy3,manifest,coverage-report

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313, lint, manifest
3.14: py314
pypy-3.9: pypy3
3.14t: py314t
pypy-3.11: pypy3

[testenv]
deps =
pytest
pytest-cov
sh >= 2.0.2, <3
click
py{39,310,311,312,313,3.14,pypy3}: ipython
py{310,311,312,313,314,314t,pypy3}: ipython
commands = pytest --cov --cov-report=term-missing {posargs}
depends =
py{39,310,311,312,313,314},pypy3: coverage-clean
coverage-report: py{39,310,311,312,313,314},pypy3
py{310,311,312,313,314,314t},pypy3: coverage-clean
coverage-report: py{310,311,312,313,314,314t},pypy3

[testenv:lint]
skip_install = true
Expand All @@ -36,7 +36,7 @@ commands =
mypy --python-version=3.12 src tests
mypy --python-version=3.11 src tests
mypy --python-version=3.10 src tests
mypy --python-version=3.9 src tests


[testenv:format]
skip_install = true
Expand Down