Skip to content

Commit 46218ef

Browse files
Update minimum supported Aesara version
1 parent 6997869 commit 46218ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
- name: Install dependencies
101101
shell: bash -l {0}
102102
run: |
103-
mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service aesara
103+
mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service "aesara>=2.5.0"
104104
pip install -q -r requirements.txt
105105
mamba list && pip freeze
106106
python -c 'import aesara; print(aesara.config.__str__(print_doc=False))'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
install_requires=[
1818
"numpy>=1.18.1",
1919
"scipy>=1.4.0",
20-
"aesara>=2.2.0",
20+
"aesara>=2.5.0",
2121
"aeppl>=0.0.9",
2222
],
2323
tests_require=["pytest"],

0 commit comments

Comments
 (0)