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={