Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
matrix:
python-version:
- "pypy3.9"
- "3.14"
- "3.13"
- "3.12"
- "3.11"
Expand Down
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Steven Myint <git@stevenmyint.com>

Additional contributions by (sorted by name)
--------------------------------------------
- Adam Dangoor <adamdangoor@gmail.com>
- Alec Merdler <alecmerdler@gmail.com>
- Alexander Biggs <akbiggs@users.noreply.github.com>
- Alexander Kapshuna <kapsh@kap.sh>
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ classifiers=[
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ env_list =
py311
py312
py313
py314
pypy3
coverage
pre-commit
Expand All @@ -19,6 +20,7 @@ python =
3.11: py311
3.12: py312
3.13: py313
3.14: py314
pypy-3.9: pypy3

[testenv]
Expand Down Expand Up @@ -71,7 +73,7 @@ commands =
coverage combine
coverage report -m
coverage xml -o {toxworkdir}/coverage.xml
depends = py39, py310, py311, py312, py313, pypy3
depends = py39, py310, py311, py312, py313, py314, pypy3

[testenv:pre-commit]
description = Run autoformatters and quality assurance tools under {basepython}.
Expand Down