From 4352c8e3a44c8af47320d6be2e4c0dd507aa4189 Mon Sep 17 00:00:00 2001 From: Calvin Date: Fri, 9 Feb 2024 19:34:54 +0200 Subject: [PATCH] Update Julia version restriction --- .github/workflows/cont_int.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cont_int.yml b/.github/workflows/cont_int.yml index ed861f8b..1dbffab9 100644 --- a/.github/workflows/cont_int.yml +++ b/.github/workflows/cont_int.yml @@ -108,10 +108,12 @@ jobs: conda-${{ runner.os }}--${{ runner.arch }}-rmgpyenv-${{ env.CACHE_NUMBER}} env: # Increase this value to reset cache if etc/example-environment.yml has not changed - CACHE_NUMBER: 1 + CACHE_NUMBER: 2 id: cache-rmgpy-env - name: Update environment - run: mamba env update -n rmg_env -f RMG-Py/environment.yml + run: | + sed -i 's/conda-forge::julia>=1.8.5,!=1.9.0/conda-forge::julia>=1.8.5,!=1.9.0, <1.10.0/g' RMG-Py/environment.yml + mamba env update -n rmg_env -f RMG-Py/environment.yml if: steps.cache-rmgpy-env.outputs.cache-hit != 'true' - name: Cythonize RMG-Py