Skip to content

Commit

Permalink
fix: pypi action missing setuptools
Browse files Browse the repository at this point in the history
Action "publish 🐍 egg to PyPI" fails with error "ModuleNotFoundError:
No module named 'setuptools'"
  • Loading branch information
d1nuc0m committed Nov 28, 2024
1 parent 2f21617 commit 5c3e347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: 3.12
- name: Install dependencies
run: |
pip install wheel
pip install wheel setuptools
- name: Build
run: |
python setup.py build sdist bdist_wheel
Expand Down

0 comments on commit 5c3e347

Please sign in to comment.