Skip to content

Commit adbf9e4

Browse files
authored
Merge pull request #144 from cisagov/improvement/remove-python-3.7
Remove support for Python 3.7 and 3.8
2 parents b2b9dd9 + 9ee2ce9 commit adbf9e4

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/build.yml

-6
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ jobs:
180180
fail-fast: false
181181
matrix:
182182
python-version:
183-
- "3.7"
184-
- "3.8"
185183
- "3.9"
186184
- "3.10"
187185
- "3.11"
@@ -286,8 +284,6 @@ jobs:
286284
fail-fast: false
287285
matrix:
288286
python-version:
289-
- "3.7"
290-
- "3.8"
291287
- "3.9"
292288
- "3.10"
293289
- "3.11"
@@ -341,8 +337,6 @@ jobs:
341337
fail-fast: false
342338
matrix:
343339
python-version:
344-
- "3.7"
345-
- "3.8"
346340
- "3.9"
347341
- "3.10"
348342
- "3.11"

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,13 @@ def get_version(version_file):
7575
# that you indicate whether you support Python 2, Python 3 or both.
7676
"Programming Language :: Python :: 3",
7777
"Programming Language :: Python :: 3 :: Only",
78-
"Programming Language :: Python :: 3.7",
79-
"Programming Language :: Python :: 3.8",
8078
"Programming Language :: Python :: 3.9",
8179
"Programming Language :: Python :: 3.10",
8280
"Programming Language :: Python :: 3.11",
8381
"Programming Language :: Python :: 3.12",
8482
"Programming Language :: Python :: Implementation :: CPython",
8583
],
86-
python_requires=">=3.7",
84+
python_requires=">=3.9",
8785
# What does your project relate to?
8886
keywords="skeleton",
8987
packages=find_packages(where="src"),

0 commit comments

Comments
 (0)