Skip to content

Commit fd074ae

Browse files
authored
Update python-publish.yml
1 parent 74d63c5 commit fd074ae

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install build
29+
pip install setuptools>=40.8.0 wheel build
30+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3031
- name: Build package
31-
run: python -m build
32+
run: python -m build --no-isolation
3233
- name: Publish package
3334
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3435
with:

0 commit comments

Comments
 (0)