Skip to content

Commit d96d87e

Browse files
Merge pull request #1054 from bluetech/rm-py37
Drop support for Python 3.7
2 parents b6f5d2b + a790dc5 commit d96d87e

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/test.yml

-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
tox_env:
37-
- "py37-pytestlatest"
3837
- "py38-pytestlatest"
3938
- "py39-pytestlatest"
4039
- "py310-pytestlatest"
@@ -46,8 +45,6 @@ jobs:
4645

4746
os: [ubuntu-latest, windows-latest]
4847
include:
49-
- tox_env: "py37-pytestlatest"
50-
python: "3.7"
5148
- tox_env: "py38-pytestlatest"
5249
python: "3.8"
5350
- tox_env: "py39-pytestlatest"

changelog/1053.removal

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dropped support for Python 3.7.

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@ classifiers = [
2525
"Programming Language :: Python",
2626
"Programming Language :: Python :: 3",
2727
"Programming Language :: Python :: 3 :: Only",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",
3332
"Programming Language :: Python :: 3.12",
3433
]
35-
requires-python = ">=3.7"
34+
requires-python = ">=3.8"
3635
dependencies = [
3736
"execnet>=1.1",
3837
"pytest>=6.2.0",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
linting
4-
py{37,38,39,310,311,312}-pytestlatest
4+
py{38,39,310,311,312}-pytestlatest
55
py310-pytestmain
66
py310-psutil
77
py310-setproctitle

0 commit comments

Comments
 (0)