Skip to content

Commit 18715a5

Browse files
committed
Removed python 3.8 support since it's EOL
1 parent 6033562 commit 18715a5

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/test-bench.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
include:
18-
- python-version: 3.8
19-
allow-failure: false
2018
- python-version: 3.9
2119
allow-failure: false
2220
- python-version: 3.10

.github/workflows/test-unit.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ on:
1010

1111
jobs:
1212
test-unit-matrix-job:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
include:
18-
- python-version: 3.8
19-
allow-failure: false
2018
- python-version: 3.9
2119
allow-failure: false
2220
- python-version: 3.10

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers = [
2020
"License :: OSI Approved :: Apache Software License",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
@@ -39,7 +38,7 @@ dependencies = [
3938
"plotly>=6.0.1,<7.0.0",
4039
"joblib>=1.4.2,<2.0.0",
4140
]
42-
requires-python = ">=3.8"
41+
requires-python = ">=3.9"
4342

4443
[project.optional-dependencies]
4544
dev = [

0 commit comments

Comments
 (0)