Skip to content

Commit 072e96e

Browse files
committed
Update Python support to reflect dependency update
Python 3.8 end of support is in October of 2024. However, some projects `case-utils` includes in its dependencies, most recently NumPy, are ending their support for Python 3.8 ahead of this EOL. This patch removes 3.8 from the test base, so updates for imported packages continue to be retrieved retrieved. References: * #127 Signed-off-by: Alex Nelson <[email protected]>
1 parent 3f14cdc commit 072e96e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cicd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
python-version:
39-
- '3.8'
39+
- '3.9'
4040
- '3.11'
4141

4242
steps:

setup.cfg

+1-1
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.8
28+
python_requires = >=3.9
2929

3030
[options.entry_points]
3131
console_scripts =

0 commit comments

Comments
 (0)