Skip to content

Commit 34c75c7

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 d52655d commit 34c75c7

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
@@ -1742,7 +1742,7 @@ def dist(
17421742
dist_shape = (rowchol_cov.shape[0], colchol_cov.shape[0])
17431743

17441744
# Broadcasting mu
1745-
mu = at.extra_ops.broadcast_to(a=mu, shape=dist_shape)
1745+
mu = at.extra_ops.broadcast_to(mu, shape=dist_shape)
17461746

17471747
mu = at.as_tensor_variable(floatX(mu))
17481748
# 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
)

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See that file for comments about the need/usage of each dependency.
33

44
aeppl==0.0.18
5-
aesara==2.3.2
5+
aesara==2.3.6
66
arviz>=0.11.4
77
cachetools>=4.2.1
88
cloudpickle

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aeppl==0.0.18
2-
aesara==2.3.2
2+
aesara==2.3.6
33
arviz>=0.11.4
44
cachetools>=4.2.1
55
cloudpickle

0 commit comments

Comments
 (0)