Skip to content

Commit

Permalink
Install via filename instead of package name
Browse files Browse the repository at this point in the history
  • Loading branch information
hohav committed Jul 6, 2024
1 parent c1179f1 commit 80918ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
args: --release --out dist --sdist
- name: "Install wheel: x86_64"
run: |
pip install peppi-py --no-index --find-links dist --force-reinstall
pip install dist/peppi_py-*.whl --force-reinstall
python -c "import peppi_py"
- name: "Build wheel: universal2"
uses: PyO3/maturin-action@v1
Expand All @@ -34,7 +34,7 @@ jobs:
args: --release --out dist
- name: "Install wheel: universal2"
run: |
pip install peppi-py --no-index --find-links dist --force-reinstall
pip install dist/peppi_py-*.whl --force-reinstall
python -c "import peppi_py"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 80918ba

Please sign in to comment.