Skip to content

Commit eef3c59

Browse files
committed
Drop support for Python 3.7
1 parent 96c8408 commit eef3c59

File tree

4 files changed

+2
-13
lines changed

4 files changed

+2
-13
lines changed

.github/workflows/test.yml

-11
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
name: [
35-
"windows-py37",
3635
"windows-py38",
3736
"windows-py39",
3837
"windows-py310",
3938
"windows-py311",
4039
"windows-py312",
4140

42-
"ubuntu-py37",
4341
"ubuntu-py38",
4442
"ubuntu-py39",
4543
"ubuntu-py310",
@@ -48,10 +46,6 @@ jobs:
4846
]
4947

5048
include:
51-
- name: "windows-py37"
52-
python: "3.7"
53-
os: windows-latest
54-
tox_env: "py37"
5549
- name: "windows-py38"
5650
python: "3.8"
5751
os: windows-latest
@@ -73,11 +67,6 @@ jobs:
7367
os: windows-latest
7468
tox_env: "py312"
7569

76-
77-
- name: "ubuntu-py37"
78-
python: "3.7"
79-
os: ubuntu-latest
80-
tox_env: "py37"
8170
- name: "ubuntu-py38"
8271
python: "3.8"
8372
os: ubuntu-latest

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
UNRELEASED
55
----------
66

7+
* Dropped support for EOL Python 3.7.
78
* Support ``-x/--exitfirst`` (`#134`_).
89
* Hide the traceback inside the ``SubTests.test()`` method (`#131`_).
910

setup.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers =
1414
Topic :: Software Development :: Testing
1515
Programming Language :: Python
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312
2+
envlist = py38,py39,py310,py311,py312
33

44
[testenv]
55
passenv =

0 commit comments

Comments
 (0)