Skip to content

Commit 002567e

Browse files
committed
Update classifiers in setup.py
1 parent a2d71e2 commit 002567e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from re import search
2-
from setuptools import setup, find_packages
2+
3+
from setuptools import find_packages, setup
34

45
with open("src/graphql/version.py") as version_file:
56
version = search('version = "(.*)"', version_file.read()).group(1)
@@ -31,9 +32,11 @@
3132
"Programming Language :: Python :: 3.8",
3233
"Programming Language :: Python :: 3.9",
3334
"Programming Language :: Python :: 3.10",
35+
"Programming Language :: Python :: 3.11",
36+
"Programming Language :: Python :: 3.12",
3437
],
3538
install_requires=[
36-
"typing-extensions>=4.2,<5; python_version < '3.8'",
39+
"typing-extensions>=4,<5; python_version < '3.10'",
3740
],
3841
python_requires=">=3.6,<4",
3942
packages=find_packages("src"),

0 commit comments

Comments
 (0)