diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9674bc..61f34c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - name: Check out repository uses: actions/checkout@v4 diff --git a/.gitpod.yml b/.gitpod.yml index 99df4bf..3a5f50a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -7,7 +7,7 @@ tasks: # Upgrade pyenv itself pyenv update - export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12" + export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12 3.13" # Install all supported Python versions for py in $PY_VERSIONS; diff --git a/pyproject.toml b/pyproject.toml index 7635b6a..e83c362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Typing :: Typed" diff --git a/tox.ini b/tox.ini index 4441a74..717538a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{39, 310, 311, 312} + py{39, 310, 311, 312, 313} pypy{39, 310} pep8 packaging