Skip to content

Commit 96da398

Browse files
Update minimum Aesara and AePPL versions
1 parent dde8609 commit 96da398

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

+1-1
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>=2.5.0"
103+
mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service "aesara>=2.8.11"
104104
pip install -q -r requirements.txt
105105
mamba list && pip freeze
106106
python -c 'import aesara; print(aesara.config.__str__(print_doc=False))'

environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies:
1111
- compilers
1212
- numpy>=1.18.1
1313
- scipy>=1.4.0
14-
- aesara>=2.8.3
15-
- aeppl>=0.0.40
14+
- aesara>=2.8.11
15+
- aeppl>=0.1.4
1616
# Intel BLAS
1717
- mkl
1818
- mkl-service

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
install_requires=[
1818
"numpy>=1.18.1",
1919
"scipy>=1.4.0",
20-
"aesara>=2.8.3",
21-
"aeppl>=0.0.40",
20+
"aesara>=2.8.11",
21+
"aeppl>=0.1.4",
2222
],
2323
tests_require=["pytest"],
2424
long_description=open("README.md").read() if exists("README.md") else "",

0 commit comments

Comments
 (0)