File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,10 @@ jobs:
220
220
echo "$HOME/.pyenv/shims" >> $GITHUB_PATH
221
221
echo "PYENV_ROOT=$HOME/.pyenv" >> $GITHUB_ENV
222
222
export PATH="$HOME/.pyenv/bin:$PATH"
223
+ if [ "$PYTHON_VERSION" = "3.14-dev" ]; then
224
+ # Replacing 3.14-dev with a pinned prerelease version for fast installation
225
+ PYTHON_VERSION="3.14.0rc3"
226
+ fi
223
227
pyenv install $PYTHON_VERSION
224
228
pyenv global $PYTHON_VERSION
225
229
env :
@@ -244,6 +248,7 @@ jobs:
244
248
fi
245
249
echo "Installing python deps"
246
250
poetry self add "poetry-dynamic-versioning[plugin]"
251
+ echo "Use the correct Python version we've set up"
247
252
poetry env use python$PYTHON_VERSION || poetry env use python3 # use the correct Python version we've set up
248
253
poetry install --no-root --only=dev
249
254
echo "Installed Dependencies"
You can’t perform that action at this time.
0 commit comments