Skip to content

Commit d796fb0

Browse files
committed
Add support for Python 3.13
1 parent 6aa3670 commit d796fb0

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515
os: [windows-latest, macos-latest, ubuntu-latest]
1616

1717
steps:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Programming Language :: Python :: Implementation :: PyPy",
3334
"Topic :: Text Processing",

tox.ini

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,21 @@ requires =
44
env_list =
55
docs
66
lint
7-
py{py3, 312, 311, 310, 39, 38}
7+
py{py3, 313, 312, 311, 310, 39, 38}
88

99
[testenv]
1010
extras =
1111
tests
1212
pass_env =
1313
FORCE_COLOR
1414
commands =
15-
{envpython} -m pytest --cov humanize --cov tests --cov-report xml {posargs}
15+
{envpython} -m pytest \
16+
--cov humanize \
17+
--cov tests \
18+
--cov-report html \
19+
--cov-report term \
20+
--cov-report xml \
21+
{posargs}
1622

1723
[testenv:docs]
1824
deps =

0 commit comments

Comments
 (0)