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