Skip to content

Commit 8872c33

Browse files
committed
Install setuptools when building release
Apparently, this is no longer installed by default.
1 parent 5dc6016 commit 8872c33

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
uses: actions/setup-python@v4
2121
with:
2222
python-version: 3.x
23+
- name: Install build dependencies # needed by our setup.py
24+
run: python -m pip install setuptools
2325
- name: Build the Python distribution
2426
run: python setup.py sdist
2527
- name: Publish distribution to PyPI

0 commit comments

Comments
 (0)