diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 98de84d..92baf20 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -50,6 +50,7 @@ jobs: - py310 - py311 - py312 + - py313 steps: - uses: actions/checkout@v4 diff --git a/hasql/__init__.py b/hasql/__init__.py index 7c7dead..18ac58f 100644 --- a/hasql/__init__.py +++ b/hasql/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 8, 0) +__version_info__ = (0, 8, 1) __version__ = ".".join(map(str, __version_info__)) package_info = ( diff --git a/setup.py b/setup.py index ffdc794..214c6dc 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,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 :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python", diff --git a/tox.ini b/tox.ini index c4c63bd..572f3c5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,mypy,py3{9,10,11,12}{,-uvloop} +envlist = lint,mypy,py3{9,10,11,12,13}{,-uvloop} [testenv] passenv = COVERALLS_*, FORCE_COLOR, PG_DSN