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 b0703dc commit 4409d5dCopy full SHA for 4409d5d
.github/workflows/test.yml
@@ -59,7 +59,11 @@ jobs:
59
pip install --user setuptools
60
pipx ensurepath
61
if [[ "${{ matrix.python-version }}" == "3.8" ]]; then
62
- pipx install poetry==1.5.1
+ pipx install 'poetry==1.5.1' --pip-args='installer<0.7.0' || {
63
+ echo "❌ pipx install failed — printing pip log:"
64
+ cat /opt/pipx/logs/*_pip_errors.log || echo "Log not found"
65
+ exit 1
66
+ }
67
else
68
pipx install poetry
69
fi
0 commit comments