Skip to content
Merged
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
7 changes: 4 additions & 3 deletions conda-envs/environment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ channels:
- conda-forge
- nodefaults
dependencies:
- pymc>=5.21.1
- pymc>=5.24.1
- pytensor>=2.31.4
- scikit-learn
- better-optimize>=0.1.2
- better-optimize>=0.1.5
- dask<2025.1.1
- xhistogram
- statsmodels
- numba
- pytest
- pytest-cov
- pydantic>=2.0.0
- preliz>=0.5.0
- preliz>=0.20.0
- pip
- pip:
- jax
Expand Down
3 changes: 1 addition & 2 deletions pymc_extras/inference/pathfinder/pathfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,15 @@
from pymc.initial_point import make_initial_point_fn
from pymc.model import modelcontext
from pymc.model.core import Point
from pymc.progress_bar import CustomProgress, default_progress_theme
from pymc.pytensorf import (
compile,
find_rng_nodes,
reseed_rngs,
)
from pymc.util import (
CustomProgress,
RandomSeed,
_get_seeds_per_chain,
default_progress_theme,
get_default_varnames,
)
from pytensor.compile.function.types import Function
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ keywords = [
license = {file = "LICENSE"}
dynamic = ["version"] # specify the version in the __init__.py file
dependencies = [
"pymc>=5.21.1",
"pymc>=5.24.1",
"pytensor>=2.31.4",
"scikit-learn",
"better-optimize>=0.1.4",
"better-optimize>=0.1.5",
"pydantic>=2.0.0",
"preliz>=0.20.0",
]

[project.optional-dependencies]
Expand All @@ -51,7 +53,6 @@ dev = [
"dask[all]<2025.1.1",
"blackjax",
"statsmodels",
"preliz>=0.5.0",
]
docs = [
"nbsphinx>=0.4.2",
Expand Down
Loading