We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e82e8b commit df1c1f7Copy full SHA for df1c1f7
.github/workflows/main.yml
@@ -95,7 +95,10 @@ jobs:
95
run: |
96
rm -rf dist
97
# workaround for pypa/setuptools#4333
98
- pipx run --pip-args 'pyproject-hooks!=1.1' build
+ pipx run \
99
+ --python ${{ steps.python-install.outputs.python-path }} \
100
+ --pip-args 'pyproject-hooks!=1.1' \
101
+ build
102
echo "PRE_BUILT_SETUPTOOLS_SDIST=$(ls dist/*.tar.gz)" >> $GITHUB_ENV
103
echo "PRE_BUILT_SETUPTOOLS_WHEEL=$(ls dist/*.whl)" >> $GITHUB_ENV
104
rm -rf setuptools.egg-info # Avoid interfering with the other tests
0 commit comments