@@ -198,13 +198,13 @@ jobs:
198198 run : |
199199
200200 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;
202202 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;
204204 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
208208 pip install pytest-sphinx
209209
210210 pip install -e ./
@@ -269,7 +269,7 @@ jobs:
269269 - name : Install dependencies
270270 shell : micromamba-shell {0}
271271 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
273273 pip install -e ./
274274 micromamba list && pip freeze
275275 python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
0 commit comments