Skip to content

Commit 834c0cd

Browse files
committed
fix action dependencies
1 parent 310f240 commit 834c0cd

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/publish-pypi.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
uses: actions/setup-python@v4
1616
with:
1717
python-version: "3.x"
18+
- name: Install packaging libraries
19+
run: |
20+
python -m pip install wheel
1821
- name: Build a binary wheel and a source tarball
19-
run: python setup.py sdist bdist_wheel
22+
run: |
23+
python setup.py sdist bdist_wheel
2024
- name: Publish distribution 📦 to PyPI
2125
uses: pypa/gh-action-pypi-publish@release/v1
2226
with:

.github/workflows/tag-testpypi.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
uses: actions/setup-python@v4
1616
with:
1717
python-version: "3.x"
18+
- name: Install packaging libraries
19+
run: |
20+
python -m pip install wheel
1821
- name: Build a binary wheel and a source tarball
19-
run: python setup.py sdist bdist_wheel
22+
run: |
23+
python setup.py sdist bdist_wheel
2024
- name: Publish distribution 📦 to Test PyPI
2125
uses: pypa/gh-action-pypi-publish@release/v1
2226
with:

0 commit comments

Comments
 (0)