From 46218ef1d900c9f05a8b2327eee0370b22ecf5d6 Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Tue, 19 Apr 2022 19:46:50 -0500 Subject: [PATCH] Update minimum supported Aesara version --- .github/workflows/test.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b5c6c7e..20a24f9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -100,7 +100,7 @@ jobs: - name: Install dependencies shell: bash -l {0} run: | - mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service aesara + mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service "aesara>=2.5.0" pip install -q -r requirements.txt mamba list && pip freeze python -c 'import aesara; print(aesara.config.__str__(print_doc=False))' diff --git a/setup.py b/setup.py index 1b3c405..0ff1419 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ install_requires=[ "numpy>=1.18.1", "scipy>=1.4.0", - "aesara>=2.2.0", + "aesara>=2.5.0", "aeppl>=0.0.9", ], tests_require=["pytest"],