Skip to content

Commit

Permalink
Merge pull request #1054 from bluetech/rm-py37
Browse files Browse the repository at this point in the history
Drop support for Python 3.7
  • Loading branch information
RonnyPfannschmidt committed Apr 3, 2024
2 parents b6f5d2b + a790dc5 commit d96d87e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -34,7 +34,6 @@ jobs:
fail-fast: false
matrix:
tox_env:
- "py37-pytestlatest"
- "py38-pytestlatest"
- "py39-pytestlatest"
- "py310-pytestlatest"
Expand All @@ -46,8 +45,6 @@ jobs:

os: [ubuntu-latest, windows-latest]
include:
- tox_env: "py37-pytestlatest"
python: "3.7"
- tox_env: "py38-pytestlatest"
python: "3.8"
- tox_env: "py39-pytestlatest"
Expand Down
1 change: 1 addition & 0 deletions changelog/1053.removal
@@ -0,0 +1 @@
Dropped support for Python 3.7.
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -25,14 +25,13 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"execnet>=1.1",
"pytest>=6.2.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist=
linting
py{37,38,39,310,311,312}-pytestlatest
py{38,39,310,311,312}-pytestlatest
py310-pytestmain
py310-psutil
py310-setproctitle
Expand Down

0 comments on commit d96d87e

Please sign in to comment.