Skip to content

Commit 42f2e91

Browse files
ricardoV94twiecki
authored andcommitted
Drop support for Python 3.8
1 parent 2269d73 commit 42f2e91

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
matrix:
184184
os: [windows-latest]
185185
floatx: [float64]
186-
python-version: ["3.8"]
186+
python-version: ["3.9"]
187187
test-subset:
188188
- tests/variational/test_approximations.py tests/variational/test_callbacks.py tests/variational/test_inference.py tests/variational/test_opvi.py tests/test_initial_point.py
189189
- tests/test_model.py tests/sampling/test_mcmc.py
@@ -259,7 +259,7 @@ jobs:
259259
matrix:
260260
os: [macos-latest]
261261
floatx: [float64]
262-
python-version: ["3.9"]
262+
python-version: ["3.10"]
263263
test-subset:
264264
- |
265265
tests/sampling/test_parallel.py
@@ -338,7 +338,7 @@ jobs:
338338
matrix:
339339
os: [ubuntu-20.04]
340340
floatx: [float64]
341-
python-version: ["3.10"]
341+
python-version: ["3.11"]
342342
test-subset:
343343
- tests/sampling/test_jax.py tests/sampling/test_mcmc_external.py
344344
fail-fast: false

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"Development Status :: 5 - Production/Stable",
3131
"Programming Language :: Python",
3232
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
@@ -71,7 +70,7 @@
7170
# Also see MANIFEST.in
7271
# package_data={'docs': ['*']},
7372
classifiers=classifiers,
74-
python_requires=">=3.8",
73+
python_requires=">=3.9",
7574
install_requires=install_reqs,
7675
tests_require=test_reqs,
7776
)

0 commit comments

Comments
 (0)