Skip to content

Commit a6f92ee

Browse files
committed
Remove support for EOL python versions
1 parent 2a8f95f commit a6f92ee

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ workflows:
6565
requires: ["Test"]
6666
matrix:
6767
parameters:
68-
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
68+
version: ["3.9", "3.10", "3.11"]
6969
- orb/docs:
7070
name: "Docs"
7171
requires: ["Test"]

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"Changelog": "https://www.pyinvoke.org/changelog.html",
4141
"CI": "https://app.circleci.com/pipelines/github/pyinvoke/invoke",
4242
},
43-
python_requires=">=3.6",
43+
python_requires=">=3.9",
4444
packages=find_packages(exclude=exclude),
4545
include_package_data=True,
4646
entry_points={
@@ -62,9 +62,6 @@
6262
"Programming Language :: Python",
6363
"Programming Language :: Python :: 3",
6464
"Programming Language :: Python :: 3 :: Only",
65-
"Programming Language :: Python :: 3.6",
66-
"Programming Language :: Python :: 3.7",
67-
"Programming Language :: Python :: 3.8",
6865
"Programming Language :: Python :: 3.9",
6966
"Programming Language :: Python :: 3.10",
7067
"Programming Language :: Python :: 3.11",

sites/www/installing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ via `pip <https://pip.pypa.io>`_::
1010

1111
$ pip install invoke
1212

13-
We currently support **Python 3.6+**. Users still on Python 3.5 or older are
13+
We currently support **Python 3.9+**. Users still on Python 3.8 or older are
1414
urged to upgrade.
1515

1616
As long as you have a supported Python interpreter, **there are no other

0 commit comments

Comments
 (0)