diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68330d4c..f843e4e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12'] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 4ca9fda6..df9c30ba 100644 --- a/setup.py +++ b/setup.py @@ -27,12 +27,12 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Library or Lesser General Public License ' '(LGPL)', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', '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', 'Topic :: Software Development :: Internationalization', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Localization', diff --git a/tox.ini b/tox.ini index 63e88f3a..b896391e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,14 +1,14 @@ [tox] -envlist = py37,py38,py39,py310,py311,py312,flake8,isort +envlist = py38,py39,py310,py311,py312,py313,flake8,isort [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 3.10: isort, flake8, py310 3.11: py311 3.12: py312 + 3.13: py313 [testenv]