From f5354c7e0d069e27d1bee35ea7e7cf344258ff54 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Thu, 10 Oct 2024 10:17:24 -0600 Subject: [PATCH] Remove temporary micromamba pin (#650) * remove temp micromamba pin from ci workflows * release notes --- .github/workflows/ci-release.yml | 1 - .github/workflows/ci.yml | 2 -- .github/workflows/upstream-dev-ci.yml | 1 - docs/release-notes.rst | 1 + 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 6c7a3b71..457bd98a 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -30,7 +30,6 @@ jobs: continue-on-error: true uses: mamba-org/setup-micromamba@v2 with: - micromamba-version: '1.5.10-0' environment-name: import_test create-args: >- python=${{ matrix.python-version }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cb39a46..736c6e3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,6 @@ jobs: continue-on-error: true uses: mamba-org/setup-micromamba@v2 with: - micromamba-version: '1.5.10-0' environment-file: build_envs/environment.yml cache-environment: true cache-environment-key: "CI ${{runner.os}}-${{runner.arch}}-py${{matrix.python-version}}-${{env.TODAY}}" @@ -116,7 +115,6 @@ jobs: continue-on-error: true uses: mamba-org/setup-micromamba@v2 with: - micromamba-version: '1.5.10-0' environment-file: build_envs/docs.yml cache-environment: true cache-environment-key: "linkcheck-${{env.TODAY}}" diff --git a/.github/workflows/upstream-dev-ci.yml b/.github/workflows/upstream-dev-ci.yml index 639f76cc..0be6318c 100644 --- a/.github/workflows/upstream-dev-ci.yml +++ b/.github/workflows/upstream-dev-ci.yml @@ -31,7 +31,6 @@ jobs: continue-on-error: true uses: mamba-org/setup-micromamba@v2 with: - micromamba-version: '1.5.10-0' environment-file: build_envs/environment.yml create-args: >- python=${{ matrix.python-version }} diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 62bebe46..3e59fd49 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -23,6 +23,7 @@ Internal Changes * Re-pin ASV and list env info by `Katelyn FitzGerald`_ in (:pr:`613`) * Refactor ``pre-commit.ci`` by `Anissa Zacharias`_ in (:pr:`628`) * Temporarily pin micromamba for CI by `Anissa Zacharias`_ in (:pr:`645`) +* Remove micromamba pin for CI by `Katelyn FitzGerald`_ in (:pr:`650`) v2024.04.0 (April 23, 2024) ---------------------------