Skip to content

Commit

Permalink
Build: Avoid building the sdist before the wheel because it lacks the…
Browse files Browse the repository at this point in the history
… proper in-docker setup (for Linux wheels) and thus builds the wrong library versions.
  • Loading branch information
scoder committed Jul 5, 2023
1 parent c4693f3 commit 794bedd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Expand Up @@ -123,7 +123,7 @@ jobs:
run: python -m pip install -r requirements.txt

- name: Build Linux wheels
run: make sdist wheel_${{ matrix.image }}
run: make wheel_${{ matrix.image }}
env: { STATIC_DEPS: true, PYTHON_BUILD_VERSION: "${{ matrix.pyversion }}" }

- name: Release
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
run: python -m pip install setuptools wheel -r requirements.txt

- name: Build wheels
run: make sdist wheel
run: make wheel
env: { STATIC_DEPS: true, RUN_TESTS: true }

- name: Release
Expand Down

0 comments on commit 794bedd

Please sign in to comment.