Skip to content

Commit 451eac4

Browse files
committed
Fix dependencies
1 parent 5674d16 commit 451eac4

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

pixi.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cmd = "python -m samplerlab -m posteriordb-fast --posteriordb posteriordb/poster
1818
[dependencies]
1919
python = ">=3.12.7,<3.13"
2020
pymc = ">=5.19.0,<6"
21-
numba = ">=0.60.0,<0.61"
21+
numba = ">=0.61.0,<0.62"
2222
pytest = ">=8.3.4,<9"
2323
maturin = ">=1.7.7,<2"
2424
pip = ">=24.3.1,<25"
@@ -41,11 +41,12 @@ cmdstanpy = ">=1.2.5,<2"
4141

4242
[pypi-dependencies]
4343
bridgestan = ">=2.6.0, <3"
44-
flowjax = { git = "https://github.com/aseyboldt/flowjax.git", rev = "07e7e32217bcfcaa7d68a304f332c925d26ab76f" }
45-
samplerlab = { git = "https://github.com/aseyboldt/samplerlab/" }
44+
#flowjax = { git = "https://github.com/aseyboldt/flowjax.git", rev = "07e7e32217bcfcaa7d68a304f332c925d26ab76f" }
45+
#samplerlab = { git = "https://github.com/aseyboldt/samplerlab/" }
4646
posteriordb = ">=0.2.0, <0.3"
47-
jax = { version = "<0.4.37, <0.5", extras = ["cuda12"] }
47+
jax = { version = ">=0.5, <0.5.1", extras = ["cuda12"] }
4848
watermark = ">=2.5.0, <3"
49+
flowjax = { git = "https://github.com/danielward27/flowjax.git" }
4950

5051
[system-requirements]
5152
#cuda = "12"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ build-backend = "maturin"
55
[project]
66
name = "nutpie"
77
description = "Sample Stan or PyMC models"
8-
version = "0.14.0"
98
authors = [{ name = "PyMC Developers", email = "[email protected]" }]
109
readme = "README.md"
1110
requires-python = ">=3.10,<3.14"
@@ -28,7 +27,7 @@ dynamic = ["version"]
2827
stan = ["bridgestan >= 2.6.1"]
2928
pymc = ["pymc >= 5.20.1", "numba >= 0.60.0"]
3029
pymc-jax = ["pymc >= 5.20.1", "jax >= 0.4.27"]
31-
nnflow = ["flowjax >= 17.0.2"]
30+
nnflow = ["flowjax >= 17.1.0", "equinox >= 0.11.12"]
3231
dev = [
3332
"bridgestan >= 2.6.1",
3433
"pymc >= 5.20.1",
@@ -42,7 +41,8 @@ all = [
4241
"pymc >= 5.20.1",
4342
"numba >= 0.60.0",
4443
"jax >= 0.4.27",
45-
"flowjax >= 17.0.2",
44+
"flowjax >= 17.1.0",
45+
"equinox >= 0.11.12",
4646
]
4747

4848
[tool.ruff]

0 commit comments

Comments
 (0)