Skip to content

Commit f77372c

Browse files
committed
Bump Pytensor dependency
1 parent ec64d40 commit f77372c

33 files changed

+33
-33
lines changed

conda-envs/environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- numpy>=1.15.0
1515
- pandas>=0.24.0
1616
- pip
17-
- pytensor>=2.15.0,<2.16
17+
- pytensor>=2.16.1,<2.17
1818
- python-graphviz
1919
- networkx
2020
- scipy>=1.4.1

conda-envs/environment-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- numpy>=1.15.0
1313
- pandas>=0.24.0
1414
- pip
15-
- pytensor>=2.15.0,<2.16
15+
- pytensor>=2.16.1,<2.17
1616
- python-graphviz
1717
- scipy>=1.4.1
1818
- typing-extensions>=3.7.4

conda-envs/environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies:
1717
- numpy>=1.15.0
1818
- pandas>=0.24.0
1919
- pip
20-
- pytensor>=2.15.0,<2.16
20+
- pytensor>=2.16.1,<2.17
2121
- python-graphviz
2222
- networkx
2323
- scipy>=1.4.1

conda-envs/windows-environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- numpy>=1.15.0
1515
- pandas>=0.24.0
1616
- pip
17-
- pytensor>=2.15.0,<2.16
17+
- pytensor>=2.16.1,<2.17
1818
- python-graphviz
1919
- networkx
2020
- scipy>=1.4.1

conda-envs/windows-environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies:
1717
- numpy>=1.15.0
1818
- pandas>=0.24.0
1919
- pip
20-
- pytensor>=2.15.0,<2.16
20+
- pytensor>=2.16.1,<2.17
2121
- python-graphviz
2222
- networkx
2323
- scipy>=1.4.1

pymc/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from pytensor.tensor.random.basic import IntegersRV
3333
from pytensor.tensor.subtensor import AdvancedSubtensor
3434
from pytensor.tensor.type import TensorType
35-
from pytensor.tensor.var import TensorConstant, TensorVariable
35+
from pytensor.tensor.variable import TensorConstant, TensorVariable
3636

3737
import pymc as pm
3838

pymc/distributions/bound.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from pytensor.tensor import as_tensor_variable
2020
from pytensor.tensor.random.op import RandomVariable
21-
from pytensor.tensor.var import TensorVariable
21+
from pytensor.tensor.variable import TensorVariable
2222

2323
from pymc.distributions.continuous import BoundedContinuous, bounded_cont_transform
2424
from pymc.distributions.dist_math import check_parameters

pymc/distributions/continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
vonmises,
5555
)
5656
from pytensor.tensor.random.op import RandomVariable
57-
from pytensor.tensor.var import TensorConstant
57+
from pytensor.tensor.variable import TensorConstant
5858

5959
from pymc.logprob.abstract import _logcdf_helper, _logprob_helper
6060
from pymc.logprob.basic import icdf

pymc/distributions/distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from pytensor.tensor.random.rewriting import local_subtensor_rv_lift
3636
from pytensor.tensor.random.utils import normalize_size_param
3737
from pytensor.tensor.rewriting.shape import ShapeFeature
38-
from pytensor.tensor.var import TensorVariable
38+
from pytensor.tensor.variable import TensorVariable
3939
from typing_extensions import TypeAlias
4040

4141
from pymc.distributions.shape_utils import (

pymc/distributions/shape_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from pytensor.raise_op import Assert
3232
from pytensor.tensor.random.op import RandomVariable
3333
from pytensor.tensor.shape import SpecifyShape
34-
from pytensor.tensor.var import TensorVariable
34+
from pytensor.tensor.variable import TensorVariable
3535
from typing_extensions import TypeAlias
3636

3737
from pymc.model import modelcontext

0 commit comments

Comments
 (0)