From 5dcb51762fe11debd5bd3e119189234b7b53e695 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:52:05 +0200 Subject: [PATCH] Bump mamba-org/setup-micromamba from 1 to 2 (#2559) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump mamba-org/setup-micromamba from 1 to 2 Bumps [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba) from 1 to 2. - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](https://github.com/mamba-org/setup-micromamba/compare/v1...v2) --- updated-dependencies: - dependency-name: mamba-org/setup-micromamba dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Filter out unsupported selectors --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Riße --- .github/workflows/testing-all-oses.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing-all-oses.yml b/.github/workflows/testing-all-oses.yml index 24024154b..43d43bef5 100644 --- a/.github/workflows/testing-all-oses.yml +++ b/.github/workflows/testing-all-oses.yml @@ -29,13 +29,13 @@ jobs: sed -e "s/.*://" > requirements.tmp.txt cat requirements.d/development.txt >> requirements.tmp.txt echo "pytest-randomly" >> requirements.tmp.txt - sed -e '/^$/d' -e '/^#.*$/d' requirements.tmp.txt > requirements.txt + sed -e '/^$/d' -e '/^#.*$/d' -e 's/\s*# \[not win\]$//' requirements.tmp.txt > requirements.txt rm requirements.tmp.txt cat requirements.txt - name: Get current year and calendar week id: year-and-week run: echo "year-and-week=$(date +%Y-%V)" >> "$GITHUB_OUTPUT" - - uses: mamba-org/setup-micromamba@v1 + - uses: mamba-org/setup-micromamba@v2 with: environment-file: requirements.txt environment-name: ci