Skip to content

Commit

Permalink
deprecate 3.7 support and add 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Mar 9, 2022
1 parent a066be4 commit 9e3ce45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit 9e3ce45

Please sign in to comment.