Skip to content

Commit

Permalink
fix: upgrade setuptools before building wheels
Browse files Browse the repository at this point in the history
wavedrom-2.0.3.post3.tar.gz wheel build is failing, because
of the setuptools and setuptools-scm dependency.

`ERROR: setuptools==57.5.0 is used in combination with setuptools-scm>=8.x`

Make sure the setuptools are updated before building the wheels.

Signed-off-by: Frantisek Hrbata <[email protected]>
  • Loading branch information
fhrbata committed Feb 26, 2025
1 parent ed715a1 commit d58d0ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-wheels-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ jobs:
- name: Get Python version
run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade pip setuptools setuptools-scm
pip show pip setuptools setuptools-scm
- name: Install build dependencies
Expand Down

0 comments on commit d58d0ad

Please sign in to comment.