From b18a38e809a394fe0ebc869c7d4c9d0ce4872da3 Mon Sep 17 00:00:00 2001 From: geisserml Date: Tue, 31 Oct 2023 14:57:38 +0100 Subject: [PATCH] retry --- .github/workflows/conda.yaml | 6 +++--- setupsrc/pypdfium2_setup/craft_packages.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda.yaml b/.github/workflows/conda.yaml index 5d95deaa8..e67c844f6 100644 --- a/.github/workflows/conda.yaml +++ b/.github/workflows/conda.yaml @@ -45,7 +45,7 @@ jobs: with: auto-update-conda: true python-version: ${{ inputs.py_version }} - channels: bblanchon,pypdfium2-team,local + channels: bblanchon,pypdfium2-team channel-priority: strict - name: Prepare @@ -90,7 +90,7 @@ jobs: with: auto-update-conda: true python-version: ${{ matrix.py }} - channels: bblanchon,pypdfium2-team,local + channels: bblanchon,pypdfium2-team channel-priority: strict - name: Download packages @@ -103,7 +103,7 @@ jobs: run: | python -VV ls -l conda/transfer/ - conda install -y conda/transfer/*.tar.bz2 + conda install -y --use-local conda/transfer/*.tar.bz2 - name: Test raw package if: inputs.package == 'raw' diff --git a/setupsrc/pypdfium2_setup/craft_packages.py b/setupsrc/pypdfium2_setup/craft_packages.py index b567aca7a..5e6153fe9 100644 --- a/setupsrc/pypdfium2_setup/craft_packages.py +++ b/setupsrc/pypdfium2_setup/craft_packages.py @@ -20,7 +20,7 @@ P_CONDA_RAW = "conda_raw" P_CONDA_HELPERS = "conda_helpers" -CondaChannels = ("-c", "bblanchon", "-c", "pypdfium2-team", "-c", "local") +CondaChannels = ("-c", "bblanchon", "-c", "pypdfium2-team") CondaDir = ProjectDir / "conda"