Skip to content

Commit

Permalink
Install setuptools when building release
Browse files Browse the repository at this point in the history
Apparently, this is no longer installed by default.
  • Loading branch information
TimoWilken committed Nov 2, 2023
1 parent 5dc6016 commit 8872c33
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install build dependencies # needed by our setup.py
run: python -m pip install setuptools
- name: Build the Python distribution
run: python setup.py sdist
- name: Publish distribution to PyPI
Expand Down

0 comments on commit 8872c33

Please sign in to comment.