@@ -198,13 +198,13 @@ jobs:
198
198
run : |
199
199
200
200
if [[ $OS == "macos-15" ]]; then
201
- micromamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython " "numpy${NUMPY_VERSION}" scipy pip graphviz cython pytest coverage pytest-cov pytest-benchmark pytest-mock libblas=*=*accelerate;
201
+ micromamba install --yes -q "python~=${PYTHON_VERSION}" "numpy${NUMPY_VERSION}" scipy pip graphviz cython pytest coverage pytest-cov pytest-benchmark pytest-mock libblas=*=*accelerate;
202
202
else
203
- micromamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython " mkl "numpy${NUMPY_VERSION}" scipy pip mkl-service graphviz cython pytest coverage pytest-cov pytest-benchmark pytest-mock;
203
+ micromamba install --yes -q "python~=${PYTHON_VERSION}" mkl "numpy${NUMPY_VERSION}" scipy pip mkl-service graphviz cython pytest coverage pytest-cov pytest-benchmark pytest-mock;
204
204
fi
205
- if [[ $INSTALL_NUMBA == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython " "numba>=0.57"; fi
206
- if [[ $INSTALL_JAX == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython " jax jaxlib numpyro && pip install tensorflow-probability; fi
207
- if [[ $INSTALL_TORCH == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython " pytorch pytorch-cuda=12.1 "mkl<=2024.0" -c pytorch -c nvidia; fi
205
+ if [[ $INSTALL_NUMBA == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" "numba>=0.57"; fi
206
+ if [[ $INSTALL_JAX == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" jax jaxlib numpyro && pip install tensorflow-probability; fi
207
+ if [[ $INSTALL_TORCH == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" pytorch pytorch-cuda=12.1 "mkl<=2024.0" -c pytorch -c nvidia; fi
208
208
pip install pytest-sphinx
209
209
210
210
pip install -e ./
@@ -269,7 +269,7 @@ jobs:
269
269
- name : Install dependencies
270
270
shell : micromamba-shell {0}
271
271
run : |
272
- micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython " mkl numpy scipy pip mkl-service cython pytest "numba>=0.57" jax jaxlib pytest-benchmark
272
+ micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" mkl numpy scipy pip mkl-service cython pytest "numba>=0.57" jax jaxlib pytest-benchmark
273
273
pip install -e ./
274
274
micromamba list && pip freeze
275
275
python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
0 commit comments