Skip to content

Commit

Permalink
try if dependency is honored w/ local channel
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 31, 2023
1 parent fe280c3 commit 6c53bf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
auto-update-conda: true
python-version: ${{ inputs.py_version }}
channels: bblanchon,pypdfium2-team
channels: bblanchon,pypdfium2-team,local
channel-priority: strict

- name: Prepare
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
with:
auto-update-conda: true
python-version: ${{ matrix.py }}
channels: bblanchon,pypdfium2-team
channels: bblanchon,pypdfium2-team,local
channel-priority: strict

- name: Download packages
Expand All @@ -99,12 +99,10 @@ jobs:
name: conda_package
path: conda/transfer/

# FIXME package pdfium-binaries dependency not honored??
- name: Prepare
run: |
python -VV
ls -l conda/transfer/
conda install -y bblanchon::pdfium-binaries
conda install -y conda/transfer/*.tar.bz2
- name: Test raw package
Expand Down
2 changes: 1 addition & 1 deletion setupsrc/pypdfium2_setup/craft_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
P_CONDA_RAW = "conda_raw"
P_CONDA_HELPERS = "conda_helpers"

CondaChannels = ("-c", "bblanchon", "-c", "pypdfium2-team")
CondaChannels = ("-c", "bblanchon", "-c", "pypdfium2-team", "-c", "local")
CondaDir = ProjectDir / "conda"


Expand Down

0 comments on commit 6c53bf7

Please sign in to comment.