From 6ae1ecc0426e2c90ce0631d69526d4422c3ed56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Blech?= <78768+martinblech@users.noreply.github.com> Date: Tue, 8 Oct 2024 10:44:17 -0700 Subject: [PATCH] Add support for Python 3.13 (#356) --- .travis.yml | 1 + setup.py | 1 + tox.ini | 1 + 3 files changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4f45ce9..7fa7c07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ python: - "3.10" - "3.11" - "3.12" + - "3.13" - "pypy" install: pip install nose2 diff --git a/setup.py b/setup.py index 7dca50c..1cf2f7d 100755 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Text Processing :: Markup :: XML', ], diff --git a/tox.ini b/tox.ini index 33ed5cc..e7060bd 100644 --- a/tox.ini +++ b/tox.ini @@ -11,6 +11,7 @@ python = 3.9: py39 3.11: py311 3.12: py312 + 3.13: py313 pypy: pypy [testenv]