Skip to content

Commit

Permalink
FIX: fixed building wheels
Browse files Browse the repository at this point in the history
Replaced cibuildwheel with a regular building with pip
  • Loading branch information
mickolaua authored Jun 14, 2023
1 parent 218d23f commit 645b8c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install pip-tools
python -m pip install cibuildwheel==2.12.3
pip-compile -o requirements.txt --resolver backtracking --verbose
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
Expand All @@ -62,4 +61,4 @@ jobs:
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
python -m pip wheel -w wheelhouse .

0 comments on commit 645b8c6

Please sign in to comment.