Skip to content

Commit 4c60fe7

Browse files
twieckiricardoV94
authored andcommitted
Pin Aesara 2.3.6
* Remove deprecated kwarg in `broadcast_to` * Update type equality check in `DifferentialEquation` `Op`
1 parent d6b8107 commit 4c60fe7

12 files changed

+12
-12
lines changed

conda-envs/environment-dev-py37.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/environment-dev-py38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/environment-dev-py39.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/environment-test-py37.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/environment-test-py38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/environment-test-py39.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- defaults
66
dependencies:
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools
1111
- cloudpickle

conda-envs/windows-environment-dev-py38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
dependencies:
66
# base dependencies (see install guide for Windows)
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.4
1010
- cachetools>=4.2.1
1111
- cloudpickle

conda-envs/windows-environment-test-py38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
dependencies:
66
# base dependencies (see install guide for Windows)
77
- aeppl=0.0.18
8-
- aesara=2.3.2
8+
- aesara=2.3.6
99
- arviz>=0.11.2
1010
- cachetools
1111
- cloudpickle

pymc/distributions/multivariate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ def dist(
17491749
dist_shape = (rowchol_cov.shape[0], colchol_cov.shape[0])
17501750

17511751
# Broadcasting mu
1752-
mu = at.extra_ops.broadcast_to(a=mu, shape=dist_shape)
1752+
mu = at.extra_ops.broadcast_to(mu, shape=dist_shape)
17531753

17541754
mu = at.as_tensor_variable(floatX(mu))
17551755
# mean = median = mode = mu

pymc/ode/ode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def __call__(self, y0, theta, return_sens=False, **kwargs):
158158
theta = at.cast(at.unbroadcast(at.as_tensor_variable(theta), 0), floatX)
159159
inputs = [y0, theta]
160160
for i, (input_val, itype) in enumerate(zip(inputs, self._itypes)):
161-
if not input_val.type == itype:
161+
if not input_val.type.in_same_class(itype):
162162
raise ValueError(
163163
f"Input {i} of type {input_val.type} does not have the expected type of {itype}"
164164
)

0 commit comments

Comments
 (0)