From ac25c58f31b8000b091f2d1bd4f17ab5b5bb3aa6 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Mon, 4 May 2026 09:55:19 -0400 Subject: [PATCH 1/2] try and add base env --- .github/workflows/conda-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-nightly.yml b/.github/workflows/conda-nightly.yml index 02ae6cb80..52b400c8a 100644 --- a/.github/workflows/conda-nightly.yml +++ b/.github/workflows/conda-nightly.yml @@ -29,7 +29,7 @@ jobs: - name: Install build tools shell: bash -l {0} run: | - conda install -y conda-build anaconda-client + conda install -n base -y conda-build anaconda-client - name: Generate nightly version string id: version From 63a5cb7bbb17d9b11315b4a9b5694f7d317de392 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Mon, 4 May 2026 09:57:46 -0400 Subject: [PATCH 2/2] fixed conda actions --- .github/workflows/ci_conda.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_conda.yml b/.github/workflows/ci_conda.yml index 8e9328386..67b71db64 100644 --- a/.github/workflows/ci_conda.yml +++ b/.github/workflows/ci_conda.yml @@ -26,12 +26,12 @@ jobs: - name: Create Conda environment shell: bash -l {0} run: | - conda install -c conda-forge fenics-dolfinx=${{ matrix.dolfinx }} scifem adios4dolfinx + conda install -c conda-forge python pip fenics-dolfinx=${{ matrix.dolfinx }} scifem adios4dolfinx - name: Install local package and dependencies shell: bash -l {0} run: | - pip install .[test] + python -m pip install .[test] - name: Run tests shell: bash -l {0}