Skip to content

Commit d58d0ad

Browse files
committed
fix: upgrade setuptools before building wheels
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 <frantisek.hrbata@espressif.com>
1 parent ed715a1 commit d58d0ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-wheels-platforms.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
- name: Get Python version
6363
run: |
6464
python --version
65-
python -m pip install --upgrade pip
65+
python -m pip install --upgrade pip setuptools setuptools-scm
66+
pip show pip setuptools setuptools-scm
6667
6768
6869
- name: Install build dependencies

0 commit comments

Comments
 (0)