Skip to content

Commit 76a52d9

Browse files
committed
Update Python range to >= 3.10, per 3.9 EOL
No effects were observed on Make-managed files. References: * https://peps.python.org/pep-0596/ Signed-off-by: Alex Nelsin <alexander.nelson@nist.gov>
1 parent bf12fa4 commit 76a52d9

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
python-version:
37-
- '3.9'
37+
- '3.10'
3838
- '3.13'
3939

4040
steps:

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
python-version:
32-
- '3.9'
32+
- '3.10'
3333
- '3.13'
3434

3535
steps:

.github/workflows/supply-chain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
python-version:
31-
- '3.9'
31+
- '3.10'
3232
- '3.13'
3333

3434
steps:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ install_requires =
2424
pydot >= 4.0.0
2525
pyshacl >= 0.27.0
2626
packages = find:
27-
python_requires = >=3.9
27+
python_requires = >=3.10
2828

2929
[options.entry_points]
3030
console_scripts =

0 commit comments

Comments
 (0)