Add explicit setuptools installation to the publishing job

This commit is contained in:
Roman Mogylatov 2024-08-07 20:48:41 -04:00
parent a8b54423dc
commit 1b9e079524

View File

@ -46,7 +46,9 @@ jobs:
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.12 python-version: 3.12
- run: python setup.py sdist - run: |
python -m pip install --upgrade pip setuptools
python setup.py sdist
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
path: ./dist/* path: ./dist/*