Skip to content

Commit

Permalink
Fix windows wheels build failure (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjsi committed Jan 5, 2024
1 parent 04305ce commit 96c3895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-cd.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v1.11.1
env:
CIBW_BEFORE_BUILD: git reset --hard && pip install -r requirements-wheel.txt
CIBW_BEFORE_BUILD: git reset --hard && pip install -r requirements-wheel.txt && rm -rf pyproject.toml
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_SKIP: pp* *-musllinux* *i686 cp35-manylinux_aarch64 cp36-manylinux_aarch64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
Expand All @@ -40,7 +40,7 @@ jobs:
- name: "Build wheels (Python >= 3.10)"
uses: pypa/cibuildwheel@v2.14.1
env:
CIBW_BEFORE_BUILD: git reset --hard && pip install -r requirements-wheel.txt
CIBW_BEFORE_BUILD: git reset --hard && pip install -r requirements-wheel.txt && rm -rf pyproject.toml
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_SKIP: pp* *-musllinux* *i686 cp36-* cp37-* cp38-* cp39-*
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
Expand Down

0 comments on commit 96c3895

Please sign in to comment.