diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d72431194e..e5ee774ad8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -183,7 +183,7 @@ jobs: matrix: os: [windows-latest] floatx: [float64] - python-version: ["3.8"] + python-version: ["3.9"] test-subset: - 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 - tests/test_model.py tests/sampling/test_mcmc.py @@ -259,7 +259,7 @@ jobs: matrix: os: [macos-latest] floatx: [float64] - python-version: ["3.9"] + python-version: ["3.10"] test-subset: - | tests/sampling/test_parallel.py @@ -338,7 +338,7 @@ jobs: matrix: os: [ubuntu-20.04] floatx: [float64] - python-version: ["3.10"] + python-version: ["3.11"] test-subset: - tests/sampling/test_jax.py tests/sampling/test_mcmc_external.py fail-fast: false diff --git a/setup.py b/setup.py index 5eedc9fb4d..ceb83c11af 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,6 @@ "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -71,7 +70,7 @@ # Also see MANIFEST.in # package_data={'docs': ['*']}, classifiers=classifiers, - python_requires=">=3.8", + python_requires=">=3.9", install_requires=install_reqs, tests_require=test_reqs, )