Skip to content

Commit

Permalink
replacing wheel dir with abs path
Browse files Browse the repository at this point in the history
  • Loading branch information
peekxc committed Dec 8, 2023
1 parent e2927f1 commit a434a76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,16 @@ jobs:
coverage report -m
- name: Build a wheel
run: |
python -m pip wheel . --no-deps --wheel-dir dist
python -m pip wheel . --no-deps --wheel-dir ${{GITHUB_WORKSPACE}}/dist
- name: Repair the wheel
run: |
delvewheel repair dist/*.whl
delvewheel repair ${{GITHUB_WORKSPACE}}/dist/*.whl
- name: Uninstall the package
run: |
python -m pip uninstall primate -y
- name: Install the wheel
run: |
python -m pip install dist/*.whl
python -m pip install ${{GITHUB_WORKSPACE}}/dist/*.whl
- name: Wheel dry-run
run: |
python -c "import primate; print(primate.__version__)"
Expand Down

0 comments on commit a434a76

Please sign in to comment.