Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
Python 3.6 reached end-of-life in Dec 2021: https://peps.python.org/pep-0494/#lifespan
  • Loading branch information
nickstenning committed Aug 3, 2022
1 parent a983c31 commit 7c5a59e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Recent changes

* CHANGED: You can use the ``PROCFILE`` OS environment variable to configure the
name of the Procfile.
* CHANGED: Python 3.6 is no longer a supported environment.

1.1.0 -- 2021-10-30
-------------------
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
'Operating System :: OS Independent',
'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',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38, py39, py310, pypy3, lint
envlist = py37, py38, py39, py310, pypy3, lint

[flake8]
max-line-length = 110
Expand All @@ -16,7 +16,6 @@ testpaths = tests

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38, lint, docs
3.9: py39
Expand Down

0 comments on commit 7c5a59e

Please sign in to comment.