Skip to content

Commit 74d5f03

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

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
coverage:
1111
executor:
1212
name: orb/default
13-
version: "3.6"
13+
version: "3.11"
1414
steps:
1515
- orb/setup
1616
- run: inv ci.make-sudouser
@@ -20,7 +20,7 @@ jobs:
2020
regression:
2121
executor:
2222
name: orb/default
23-
version: "3.6"
23+
version: "3.11"
2424
steps:
2525
- orb/setup
2626
- run: inv regression
@@ -29,7 +29,7 @@ jobs:
2929
doctests:
3030
executor:
3131
name: orb/default
32-
version: "3.6"
32+
version: "3.11"
3333
steps:
3434
- orb/setup
3535
- run: inv www.doctest
@@ -38,7 +38,7 @@ jobs:
3838
typecheck:
3939
executor:
4040
name: orb/default
41-
version: "3.6"
41+
version: "3.11"
4242
steps:
4343
- orb/setup
4444
- run: mypy .
@@ -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)