From 038f31fa031bffc7d4291fb2101d9eb860a7bf88 Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Wed, 9 Mar 2022 03:01:02 +0100 Subject: [PATCH] deprecate 3.7 support and add 3.10 support --- .github/workflows/ci_tests.yml | 2 +- setup.json | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index bbb3b924..0be2c137 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.10] backend: ['django', 'sqlalchemy'] services: diff --git a/setup.json b/setup.json index 6a11a7b6..a9abb20c 100644 --- a/setup.json +++ b/setup.json @@ -16,9 +16,9 @@ "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Intended Audience :: Developers", "Topic :: Database", "Topic :: Database :: Database Engines/Servers", diff --git a/setup.py b/setup.py index 67807915..b1cdd5c4 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ long_description=open(MODULE_DIR.joinpath("README.md")).read(), long_description_content_type="text/markdown", packages=find_packages(exclude=["tests", "profiles"]), - python_requires=">=3.7", + python_requires=">=3.8", install_requires=REQUIREMENTS, extras_require={"dev": DEV, "testing": TESTING}, entry_points={