From 49998ddb79195fbe3687769cc8e2fb5409c0bbca Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Feb 2026 13:26:42 -0500 Subject: [PATCH 1/5] Hopefully fix issue with conda-standalone canary --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00234e148..2f171b073 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -121,7 +121,9 @@ jobs: conda create -yqp "${{ runner.temp }}/conda-standalone-nightly" -c conda-canary/label/dev "conda-standalone=*=*single*" echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/conda-standalone-nightly/standalone_conda/conda.exe" >> $GITHUB_ENV elif [[ "${{ matrix.conda-standalone }}" == "conda-standalone-onedir" ]]; then - conda create -yqp "${{ runner.temp }}/conda-standalone-onedir" -c conda-canary/label/dev "conda-standalone=*=*onedir*" + # Request a version newer than 25.1.1 due to an issue with newer versions getting deprioritized + # because they are built with 'track_features' + conda create -yqp "${{ runner.temp }}/conda-standalone-onedir" -c conda-canary/label/dev "conda-standalone>25.1.1=*=*onedir*" echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/conda-standalone-onedir/standalone_conda/conda.exe" >> $GITHUB_ENV else conda activate constructor-dev From 80aa0340fb956477b7ab63c3bb41d91c4caf0774 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Feb 2026 13:33:25 -0500 Subject: [PATCH 2/5] Fix typo in workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2f171b073..785b9b0c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -123,7 +123,7 @@ jobs: elif [[ "${{ matrix.conda-standalone }}" == "conda-standalone-onedir" ]]; then # Request a version newer than 25.1.1 due to an issue with newer versions getting deprioritized # because they are built with 'track_features' - conda create -yqp "${{ runner.temp }}/conda-standalone-onedir" -c conda-canary/label/dev "conda-standalone>25.1.1=*=*onedir*" + conda create -yqp "${{ runner.temp }}/conda-standalone-onedir" -c conda-canary/label/dev "conda-standalone>25.1.1=*onedir*" echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/conda-standalone-onedir/standalone_conda/conda.exe" >> $GITHUB_ENV else conda activate constructor-dev From 5c9113fcbb53f2f7fd1e90a2c1f3ebceb09d3af1 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Feb 2026 14:41:08 -0500 Subject: [PATCH 3/5] Add news --- news/1173-ensure-latest-conda-standalone | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 news/1173-ensure-latest-conda-standalone diff --git a/news/1173-ensure-latest-conda-standalone b/news/1173-ensure-latest-conda-standalone new file mode 100644 index 000000000..08e712515 --- /dev/null +++ b/news/1173-ensure-latest-conda-standalone @@ -0,0 +1,19 @@ +### Enhancements + +* + +### Bug fixes + +* + +### Deprecations + +* + +### Docs + +* + +### Other + +* Canary CI environment using the `onedir` variant of `conda-standalone` now correctly uses the latest version available. (#1173) From 7ff5aaac1d114cff61d349bbf987c428ebd7c92e Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Feb 2026 14:41:44 -0500 Subject: [PATCH 4/5] Fix language in NEWS --- news/1173-ensure-latest-conda-standalone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/news/1173-ensure-latest-conda-standalone b/news/1173-ensure-latest-conda-standalone index 08e712515..6c958b80f 100644 --- a/news/1173-ensure-latest-conda-standalone +++ b/news/1173-ensure-latest-conda-standalone @@ -16,4 +16,4 @@ ### Other -* Canary CI environment using the `onedir` variant of `conda-standalone` now correctly uses the latest version available. (#1173) +* The canary CI environment using the `onedir` variant of `conda-standalone` now correctly uses the latest version available. (#1173) From a2cba08bfafd9a6c675c6b842bb8b3579872de54 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 23 Feb 2026 14:50:55 -0500 Subject: [PATCH 5/5] pre-commit fix --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 785b9b0c1..8255a5272 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -121,7 +121,7 @@ jobs: conda create -yqp "${{ runner.temp }}/conda-standalone-nightly" -c conda-canary/label/dev "conda-standalone=*=*single*" echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/conda-standalone-nightly/standalone_conda/conda.exe" >> $GITHUB_ENV elif [[ "${{ matrix.conda-standalone }}" == "conda-standalone-onedir" ]]; then - # Request a version newer than 25.1.1 due to an issue with newer versions getting deprioritized + # Request a version newer than 25.1.1 due to an issue with newer versions getting deprioritized # because they are built with 'track_features' conda create -yqp "${{ runner.temp }}/conda-standalone-onedir" -c conda-canary/label/dev "conda-standalone>25.1.1=*onedir*" echo "CONSTRUCTOR_CONDA_EXE=${{ runner.temp }}/conda-standalone-onedir/standalone_conda/conda.exe" >> $GITHUB_ENV