Skip to content

Commit 6483678

Browse files
author
Sylvain MARIE
committed
Removed python 2.7 too from the supported ones
1 parent 19b2d3c commit 6483678

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

docs/changelog.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
### 1.16.0 - (in progress) new python versions scope
44

5-
- Removed official support for python versions `<3.9`. These versions will not run in CI anymore. Note that `2.7` is
6-
still supported - until corresponding github action stops working.
5+
- Removed official support for python versions `<3.9`. These versions will not run in CI anymore.
76

87

98
### 1.15.6 - compatibility fix

noxfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# add parent folder to python path so that we can import noxfile_utils.py
88
# note that you need to "pip install -r noxfile-requiterements.txt" for this file to work.
99
sys.path.append(str(Path(__file__).parent / "ci_tools"))
10-
from nox_utils import (PY27, PY39, PY310, PY311, PY312, PY313, PY314, install_reqs, rm_folder, rm_file,
10+
from nox_utils import (PY39, PY310, PY311, PY312, PY313, PY314, install_reqs, rm_folder, rm_file,
1111
DONT_INSTALL) # noqa
1212

1313

@@ -57,7 +57,6 @@ class Folders:
5757
PY312: {"coverage": False, "pkg_specs": {"pip": ">19"}},
5858
PY311: {"coverage": False, "pkg_specs": {"pip": ">19"}},
5959
PY310: {"coverage": False, "pkg_specs": {"pip": ">19"}},
60-
PY27: {"coverage": False, "pkg_specs": {"pip": ">10"}},
6160
# IMPORTANT: this should be last so that the folder docs/reports is not deleted afterwards
6261
PY39: {"coverage": True, "pkg_specs": {"pip": ">19"}},
6362
}

0 commit comments

Comments
 (0)