Skip to content

Commit 199d905

Browse files
committed
Remove Python 3.8 compatibility (conflicts with scipy version requirement)
1 parent 1932c37 commit 199d905

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/python_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1414

1515
steps:
1616
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111
"scipy>=1.11",
1212
"pandas"
1313
]
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515
authors = [
1616
{name = "Lindon Roberts", email = "[email protected]"}
1717
]
@@ -34,7 +34,6 @@ classifiers = [
3434
"Operating System :: Unix",
3535
"Programming Language :: Python",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.8",
3837
"Programming Language :: Python :: 3.9",
3938
"Programming Language :: Python :: 3.10",
4039
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)