diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79cbb2f478..48459f699e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - version: ["3.9", "3.10", "3.11", "3.12"] + version: ["3.9", "3.10", "3.11", "3.12", "3.13"] services: postgres: image: "postgres:12.16" diff --git a/setup.cfg b/setup.cfg index 818baa47ee..4ab6ef3b92 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,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 Topic :: Multimedia :: Graphics @@ -26,6 +27,7 @@ classifiers = zip_safe = False packages = find: install_requires = + audioop-lts==0.2.1; python_version>='3.13' babel==2.16.0 click==8.1.7 discord.py==2.4.0 diff --git a/setup.py b/setup.py index dbb2656d27..31e37257c8 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ #!/usr/bin/env python from setuptools import setup -setup(python_requires=">=3.9, <3.13") +setup(python_requires=">=3.9, <3.14")