From 50f1f54dcc2dd2f4d96ce674725b46be5b3acea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Delaporte-Mathurin?= <40028739+RemDelaporteMathurin@users.noreply.github.com> Date: Fri, 16 Jan 2026 16:49:32 -0500 Subject: [PATCH 1/2] Update container versions in CI workflow --- .github/workflows/ci_docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_docker.yml b/.github/workflows/ci_docker.yml index ae90c28..87d0ddc 100644 --- a/.github/workflows/ci_docker.yml +++ b/.github/workflows/ci_docker.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - container_version: [v0.9.0, nightly] + container_version: [v0.9.0, v0.10.0, nightly] container: dolfinx/dolfinx:${{ matrix.container_version }} steps: - name: Checkout code @@ -29,4 +29,4 @@ jobs: uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.xml \ No newline at end of file + files: ./coverage.xml From 389fefbe66b6aa22a98ed09d99512fcfba00b83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Delaporte-Mathurin?= <40028739+RemDelaporteMathurin@users.noreply.github.com> Date: Fri, 16 Jan 2026 16:50:18 -0500 Subject: [PATCH 2/2] dolfinx 0.10 in conda CI --- .github/workflows/ci_conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_conda.yml b/.github/workflows/ci_conda.yml index 02481cf..e064c0e 100644 --- a/.github/workflows/ci_conda.yml +++ b/.github/workflows/ci_conda.yml @@ -20,7 +20,7 @@ jobs: - name: Create Conda environment shell: bash -l {0} run: | - conda install -c conda-forge fenics-dolfinx=0.9.0 pyvista + conda install -c conda-forge fenics-dolfinx=0.10.0 pyvista - name: Install local package and dependencies shell: bash -l {0}