diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 3c5c47d4..3b8a57e6 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.10" - name: Build the sdist and the wheel run: | pip install build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa8756aa..6736bfaf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.11"] + python-version: ["3.10"] test-subset: - tests/model - tests/statespace/core/test_statespace.py diff --git a/conda-envs/environment-test.yml b/conda-envs/environment-test.yml index c8ff7f20..223ae020 100644 --- a/conda-envs/environment-test.yml +++ b/conda-envs/environment-test.yml @@ -13,7 +13,6 @@ dependencies: - pytest - pytest-cov - pydantic>=2.0.0 - - preliz - pip - pip: - jax diff --git a/pyproject.toml b/pyproject.toml index c71183cd..16d134b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", @@ -22,7 +23,7 @@ classifiers = [ "Operating System :: OS Independent", ] readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.10" keywords = [ "probability", "machine learning", @@ -51,7 +52,7 @@ dev = [ "dask[all]<2025.1.1", "blackjax", "statsmodels", - "preliz", + "preliz>=0.5.0", ] docs = [ "nbsphinx>=0.4.2",