diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 415c220..1110c62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] name: Python ${{ matrix.python-version }} steps: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 40773ee..75924dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,7 @@ test: parallel: matrix: - - python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + - python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] image: python:${python_version}-alpine before_script: diff --git a/setup.py b/setup.py index 39b7472..0ca3fc0 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], python_requires=">=3.8", install_requires=[ diff --git a/tox.ini b/tox.ini index cf17b6d..32a4b44 100644 --- a/tox.ini +++ b/tox.ini @@ -15,3 +15,4 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313