Skip to content

Commit 20afc4f

Browse files
committed
CHANGE: drop support for Python3.8
1 parent e9bad9e commit 20afc4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-notebooks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.9', '3.10', '3.11', '3.12']
1919

2020
steps:
2121
- uses: actions/checkout@v2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
version="0.0.1",
1414
description="Collection of PRML algorithms",
1515
author="ctgk",
16-
python_requires=">=3.8",
16+
python_requires=">=3.9",
1717
install_requires=["numpy>=2", "scipy"],
1818
packages=find_packages(exclude=["test", "test.*"]),
1919
test_suite="test",

0 commit comments

Comments
 (0)