Skip to content

Commit

Permalink
Merge pull request #936 from prometheus/remove-37-support
Browse files Browse the repository at this point in the history
Remove Support for Python < 3.8
  • Loading branch information
csmarchbanks committed Jul 14, 2023
2 parents c72c4f3 + f38492a commit 3a826dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ workflows:
matrix:
parameters:
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand All @@ -90,4 +88,4 @@ workflows:
matrix:
parameters:
python:
- "3.7"
- "3.8"
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,14 @@
'twisted': ['twisted'],
},
test_suite="tests",
python_requires=">=3.6",
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tox]
envlist = coverage-clean,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11,pypy3.7,py3.9-nooptionals,coverage-report,flake8,isort,mypy
envlist = coverage-clean,py3.8,py3.9,py3.10,py3.11,pypy3.8,py3.9-nooptionals,coverage-report,flake8,isort,mypy

[testenv]
deps =
coverage
pytest
attrs
{py3.7,pypy3.7}: twisted
py3.7: asgiref
{py3.8,pypy3.8}: twisted
py3.8: asgiref
# See https://github.com/django/asgiref/issues/393 for why we need to pin asgiref for pypy
pypy3.7: asgiref==3.6.0
pypy3.8: asgiref==3.6.0
commands = coverage run --parallel -m pytest {posargs}

[testenv:py3.9-nooptionals]
Expand Down

0 comments on commit 3a826dc

Please sign in to comment.