Skip to content

Commit 89b1985

Browse files
committed
Bump PyTensor dependency
1 parent 4c0d838 commit 89b1985

9 files changed

+9
-9
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.18.1,<2.19
17+
- pytensor>=2.19,<2.20
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.18.1,<2.19
15+
- pytensor>=2.19,<2.20
1616
- python-graphviz
1717
- scipy>=1.4.1
1818
- typing-extensions>=3.7.4

conda-envs/environment-jax.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- numpyro>=0.8.0
2222
- pandas>=0.24.0
2323
- pip
24-
- pytensor>=2.18.1,<2.19
24+
- pytensor>=2.19,<2.20
2525
- python-graphviz
2626
- networkx
2727
- scipy>=1.4.1

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.18.1,<2.19
20+
- pytensor>=2.19,<2.20
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.18.1,<2.19
17+
- pytensor>=2.19,<2.20
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.18.1,<2.19
20+
- pytensor>=2.19,<2.20
2121
- python-graphviz
2222
- networkx
2323
- scipy>=1.4.1

pymc/sampling/forward.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def shared_value_matches(var):
200200
# Walk the graph from inputs to outputs and tag the volatile variables
201201
nodes: list[Variable] = general_toposort(
202202
fg.outputs, deps=lambda x: x.owner.inputs if x.owner else []
203-
)
203+
) # type: ignore
204204
volatile_nodes: set[Any] = set()
205205
for node in nodes:
206206
if (

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ numpydoc
1818
pandas>=0.24.0
1919
polyagamma
2020
pre-commit>=2.8.0
21-
pytensor>=2.18.1,<2.19
21+
pytensor>=2.19,<2.20
2222
pytest-cov>=2.5
2323
pytest>=3.0
2424
scipy>=1.4.1

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ cloudpickle
44
fastprogress>=0.2.0
55
numpy>=1.15.0
66
pandas>=0.24.0
7-
pytensor>=2.18.1,<2.19
7+
pytensor>=2.19,<2.20
88
scipy>=1.4.1
99
typing-extensions>=3.7.4

0 commit comments

Comments
 (0)