Skip to content

Commit 04e890b

Browse files
committed
Update Python support to reflect coming 3.7 EOL
Python 3.7 end of support is 2023-06-27. Some projects `case-utils` includes in its dependencies, most recently NumPy, are ending their support for Python 3.7 ahead of this EOL. Rather than hold `case-utils` back for another 6 months, this patch removes 3.7 from the test base, and will encourage downstream adopters to do the same, so updates for imported packages continue to be retrieved. References: * https://www.python.org/downloads/
1 parent 918dd3d commit 04e890b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
python-version:
34-
- '3.7'
34+
- '3.8'
3535
- '3.11'
3636

3737
steps:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install_requires =
2525
requests
2626
tabulate
2727
packages = find:
28-
python_requires = >=3.7
28+
python_requires = >=3.8
2929

3030
[options.entry_points]
3131
console_scripts =

0 commit comments

Comments
 (0)