Skip to content

Commit

Permalink
Remove support for Python 3.6 (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Jan 20, 2022
1 parent e99b37e commit 171e4fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
os: [Ubuntu, Windows, macOS]
python_version:
["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion docs/development/getting-started.rst
Expand Up @@ -30,10 +30,10 @@ each supported Python version and run the tests. For example:
$ nox -s tests
...
nox > Ran multiple sessions:
nox > * tests-3.6: success
nox > * tests-3.7: success
nox > * tests-3.8: success
nox > * tests-3.9: success
nox > * tests-3.10: success
nox > * tests-pypy3: skipped
You may not have all the required Python versions installed, in which case you
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -21,7 +21,7 @@
nox.options.reuse_existing_virtualenvs = True


@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "pypy3"])
def tests(session):
def coverage(*args):
session.run("python", "-m", "coverage", *args)
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -47,7 +47,7 @@
url=about["__uri__"],
author=about["__author__"],
author_email=about["__email__"],
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=["pyparsing>=2.0.2,!=3.0.5"], # 2.0.2 + needed to avoid issue #91
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand All @@ -57,7 +57,6 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 171e4fb

Please sign in to comment.