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 2535988 commit 99a9f27Copy full SHA for 99a9f27
.github/workflows/test-and-publish.yaml
@@ -146,6 +146,9 @@ jobs:
146
- uses: actions/setup-python@v5
147
with:
148
python-version: ${{ matrix.python_version }}
149
+ - name: Remove old poetry cache
150
+ run: rm -rf ~/.cache/pypoetry
151
+ if: ${{ matrix.os == 'pi' }}
152
- name: Setup Poetry
153
uses: snok/install-poetry@v1
154
@@ -162,7 +165,6 @@ jobs:
162
165
fi
163
166
echo "Installing python deps"
164
167
poetry self add "poetry-dynamic-versioning[plugin]"
- poetry env remove --all -v
168
poetry env use python$PYTHON_VERSION || poetry env use python3 # use the correct Python version we've set up
169
poetry install --no-root --only=dev
170
echo "Installed Dependencies"
0 commit comments