We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d63c5 commit fd074aeCopy full SHA for fd074ae
1 file changed
.github/workflows/python-publish.yml
@@ -26,9 +26,10 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- pip install build
+ pip install setuptools>=40.8.0 wheel build
30
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- name: Build package
- run: python -m build
32
+ run: python -m build --no-isolation
33
- name: Publish package
34
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
35
with:
0 commit comments