Skip to content

Commit

Permalink
Enable python 3.12, disable python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Mar 15, 2024
1 parent 5d963b0 commit 0d2588c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -114,11 +114,11 @@ workflows:
matrix:
parameters:
v:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

- deploy:
context: global
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -23,16 +23,17 @@
install_requires=[],
package_data={"universalasync": ["py.typed"]},
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
)

0 comments on commit 0d2588c

Please sign in to comment.