Skip to content

Commit

Permalink
build: Add jax as optional dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt committed Jun 26, 2024
1 parent e93c7bb commit b2cb2c9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ dependencies = [
[project.optional-dependencies]
stan = ["bridgestan >= 2.4.1"]
pymc = ["pymc >= 5.15.0", "numba >= 0.59.1"]
all = ["bridgestan >= 2.4.1", "pymc >= 5.15.0", "numba >= 0.59.1"]
pymc-jax = ["pymc >= 5.15.0", "jax >= 0.4.27"]
all = [
"bridgestan >= 2.4.1",
"pymc >= 5.15.0",
"numba >= 0.59.1",
"jax >= 0.4.27",
]

[tool.ruff]
line-length = 88
Expand Down

0 comments on commit b2cb2c9

Please sign in to comment.