Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion conda-envs/environment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ dependencies:
- pytest
- pytest-cov
- pydantic>=2.0.0
- preliz
- pip
- pip:
- jax
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -22,7 +23,7 @@ classifiers = [
"Operating System :: OS Independent",
]
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.10"
keywords = [
"probability",
"machine learning",
Expand Down Expand Up @@ -51,7 +52,7 @@ dev = [
"dask[all]<2025.1.1",
"blackjax",
"statsmodels",
"preliz",
"preliz>=0.5.0",
]
docs = [
"nbsphinx>=0.4.2",
Expand Down
Loading