Skip to content

Commit 23d269a

Browse files
authored
Fix for publish to PyPI failure (#1273)
This change fix the publishing step to PyPI and Test PyPI but ensuring that tox is installed. Fixes: #1272 Signed-off-by: Eric Brown <[email protected]>
1 parent e3ff8b5 commit 23d269a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: 3.9
2020

2121
- name: Install dependencies
22-
run: pip install wheel
22+
run: pip install tox wheel
2323

2424
- name: Build man page if not present
2525
run: |

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: 3.9
2020

2121
- name: Install dependencies
22-
run: pip install wheel
22+
run: pip install tox wheel
2323

2424
- name: Build man page if not present
2525
run: |

0 commit comments

Comments
 (0)