Skip to content
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

## [Unreleased]

* Relax `jax` and `jaxlib` dependency pins to `>= 0.7.2, < 1.0.0` and add
`jax[cuda12]` to `[and-cuda]` optional dependencies to support Python 3.13
and prevent PJRT accelerator plugin version mismatches.
* Update `BayesianPPPCheck` calculation to use the posterior predictive
distribution with `sigma` rather than the posterior expected outcome.
* **Breaking change**: Toggle default backend from TensorFlow to JAX.
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ dependencies = [
"babel",
"bidict",
"immutabledict",
"jax == 0.7.2",
"jaxlib == 0.7.2",
"jax >= 0.7.2, < 1.0.0",
"jaxlib >= 0.7.2, < 1.0.0",
"joblib",
"matplotlib < 3.11.0",
"natsort >= 7.1.1, < 8",
Expand Down Expand Up @@ -71,16 +71,17 @@ colab = [
# Installed through `pip install -e .[and-cuda]`
and-cuda = [
"tensorflow[and-cuda] >= 2.21.0, < 2.22",
"jax[cuda12] >= 0.7.2, < 1.0.0",
]
# MLflow deps
# Installed through `pip install -e .[mlflow]`
mlflow = ["mlflow"]
# JAX backend dependencies.
# Installed through `pip install -e .[jax]`
jax = [
"jax==0.7.2",
"jaxlib==0.7.2",
"tfp-nightly[substrates-jax]==0.26.0.dev20260130",
"jax >= 0.7.2, < 1.0.0",
"jaxlib >= 0.7.2, < 1.0.0",
"tfp-nightly[substrates-jax] == 0.26.0.dev20260130",
]
# MMM proto schema.
schema = [
Expand Down
Loading