Skip to content

Commit d891113

Browse files
committed
ENH: Restrict to python3.9 and above.
1 parent a2b18ea commit d891113

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
python-version: ["3.8", "3.9", "3.10"]
44+
python-version: ["3.9", "3.10"]
4545
runs-on: [ubuntu-latest, windows-latest, macos-14]
4646

4747
steps:

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "Radiomics features library for python"
1212
readme = "README.md"
13-
requires-python =">=3.8"
13+
requires-python =">=3.9"
1414
license = { file = "LICENSE.txt"}
1515
keywords = [ "radiomics", "cancerimaging", "medicalresearch", "computationalimaging" ]
1616
classifiers = [
@@ -21,11 +21,9 @@ classifiers = [
2121
'License :: OSI Approved :: BSD License',
2222
'Operating System :: OS Independent',
2323
'Programming Language :: C',
24-
'Programming Language :: Python :: 3.5',
25-
'Programming Language :: Python :: 3.6',
26-
'Programming Language :: Python :: 3.7',
27-
'Programming Language :: Python :: 3.8',
2824
'Programming Language :: Python :: 3.9',
25+
'Programming Language :: Python :: 3.10',
26+
'Programming Language :: Python :: 3.11',
2927
'Topic :: Scientific/Engineering :: Bio-Informatics'
3028
]
3129
dynamic = ["version"]

0 commit comments

Comments
 (0)