Skip to content

Commit

Permalink
Update Python support to reflect dependency update
Browse files Browse the repository at this point in the history
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 <alexander.nelson@nist.gov>
  • Loading branch information
ajnelson-nist committed Aug 28, 2023
1 parent 3f14cdc commit 072e96e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.11'

steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ install_requires =
requests
tabulate
packages = find:
python_requires = >=3.8
python_requires = >=3.9

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 072e96e

Please sign in to comment.