From 0d2588c4cd5cfc3d132ebf95ba526348270e6fac Mon Sep 17 00:00:00 2001 From: MrNaif2018 Date: Sat, 16 Mar 2024 00:19:14 +0300 Subject: [PATCH] Enable python 3.12, disable python 3.7 --- .circleci/config.yml | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec798d6..a3f2925 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -114,11 +114,11 @@ workflows: matrix: parameters: v: - - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" + - "3.12" - deploy: context: global diff --git a/setup.py b/setup.py index ffcabd8..6193e3c 100644 --- a/setup.py +++ b/setup.py @@ -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", )