Skip to content

Commit 67cc060

Browse files
authored
Merge pull request #239 from awanlin/topic/fix-publish
Fix publish by installing setuptools
2 parents fb6259a + 6f04d7c commit 67cc060

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ jobs:
2323
uses: actions/setup-python@master
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
- name: Install pip, setuptools, and wheel
27+
run: python -m pip install --upgrade pip setuptools wheel
2628
- name: Build Python distribution
2729
working-directory: .
2830
run: |
29-
pip install wheel
3031
rm -rf dist
3132
python setup.py bdist_wheel sdist --formats tar
3233
pushd dist >/dev/null || exit

0 commit comments

Comments
 (0)