Skip to content

Commit dbd54a4

Browse files
committed
restore python 3.7 support
This needs to be enabled for the package lint job to pass. The 3.7 jobs do not have to pass for Mergify to accept the PR.
1 parent 5e0d73a commit dbd54a4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
python-version:
19+
- 3.7
1920
- 3.8
2021
- 3.9
2122
- "3.10"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.7",
1617
"Programming Language :: Python :: 3.8",
1718
"Programming Language :: Python :: 3.9",
1819
"Programming Language :: Python :: 3.10",
@@ -27,7 +28,7 @@ dynamic = ["version"]
2728
keywords = ["virtualenv"]
2829
license = {text = "MIT"}
2930
readme = "README.txt"
30-
requires-python = ">=3.8"
31+
requires-python = ">=3.7"
3132

3233
dependencies = [
3334
"virtualenv",

0 commit comments

Comments
 (0)