From f614e5caa540be3ec0f4cbae2fd81e0b8ba3b0c5 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Thu, 8 Jan 2026 12:55:27 +0300 Subject: [PATCH] Fix hang in Ubuntu build for Anaconda-2025.12 --- .github/workflows/modified_scripts_build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/modified_scripts_build.yml b/.github/workflows/modified_scripts_build.yml index babdb895..a538763b 100644 --- a/.github/workflows/modified_scripts_build.yml +++ b/.github/workflows/modified_scripts_build.yml @@ -171,10 +171,6 @@ jobs: os.environ["EXPECTED_PYTHON"], "bin") assert os.path.dirname(sys.executable) == correct_dir' - # bundled executables in some Anaconda releases cause the post-run step to hang in MacOS - - run: | - pyenv global system - rm -f "$(pyenv root)"/shims/* ubuntu_build: needs: discover_modified_scripts @@ -235,6 +231,10 @@ jobs: "bin") assert os.path.dirname(sys.executable) == correct_dir' fi + # bundled executables in some Anaconda releases cause the post-run step to break + - run: | + pyenv global system + rm -f "$(pyenv root)"/shims/* ubuntu_build_tar_gz: needs: discover_modified_scripts if: needs.discover_modified_scripts.outputs.versions_cpython_only != '[""]'