Skip to content

Commit

Permalink
Fix pip install paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Sep 30, 2024
1 parent de8021f commit 7270eef
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ jobs:
working-directory: target/wheels/
run: |
ls -la
python -m pip install vegafusion-*.whl
python -m pip install vegafusion-*manylinux_2_17_x86_64*.whl
# Optional dependencies
python -m pip install polars-lts-cpu "duckdb>=1.0" "vl-convert-python>=1.0.1rc1" scikit-image "pandas>=2.2" jupytext voila anywidget ipywidgets chromedriver-binary-auto
Expand Down Expand Up @@ -302,7 +303,8 @@ jobs:
working-directory: target/wheels/
run: |
ls -la
python -m pip install vegafusion-*.whl
python -m pip install vegafusion-*macosx_11_*_arm64.whl
# Optional dependencies
python -m pip install polars "duckdb>=1.0" vl-convert-python "pandas>=2.2"
Expand Down Expand Up @@ -338,7 +340,7 @@ jobs:
shell: powershell
run: |
Get-ChildItem -Force
$vegafusion = Get-ChildItem -Name "vegafusion-*.whl" | Select-Object -First 1
$vegafusion = Get-ChildItem -Name "vegafusion-*win_amd64.whl" | Select-Object -First 1
python -m pip install $vegafusion
Expand Down

0 comments on commit 7270eef

Please sign in to comment.