Skip to content

Commit

Permalink
Merge pull request #887 from EvanBldy/master
Browse files Browse the repository at this point in the history
[package] add support for python 3.13
  • Loading branch information
EvanBldy authored Nov 20, 2024
2 parents e6acd94 + 1bc308a commit e5c3495
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit e5c3495

Please sign in to comment.