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 be2f4b2 commit 2535988Copy full SHA for 2535988
.github/workflows/test-and-publish.yaml
@@ -162,10 +162,12 @@ jobs:
162
fi
163
echo "Installing python deps"
164
poetry self add "poetry-dynamic-versioning[plugin]"
165
- poetry env remove --all
166
- poetry env use python3 # use the correct Python version we've set up
+ poetry env remove --all -v
+ poetry env use python$PYTHON_VERSION || poetry env use python3 # use the correct Python version we've set up
167
poetry install --no-root --only=dev
168
echo "Installed Dependencies"
169
+ env:
170
+ PYTHON_VERSION: ${{ matrix.python_version }}
171
- name: Build Docs # only build docs once
172
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python_version == '3.11' }}
173
run: |
0 commit comments