Skip to content

Commit a6f5145

Browse files
committed
CI: Use the release version of Python 3.14
1 parent 6b2bf71 commit a6f5145

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/test-and-publish.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
- '3.11'
3232
- '3.12'
3333
- '3.13'
34-
- '3.14-dev'
34+
- '3.14'
3535
build_type:
3636
type: choice
3737
description: 'Choose the build type to use'
@@ -182,7 +182,7 @@ jobs:
182182
fail-fast: false
183183
matrix:
184184
os: [ 'ubuntu-22.04', 'macos-15-intel', 'macos-14', 'windows-2022', 'ubuntu-22.04-arm' ]
185-
python_version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev' ]
185+
python_version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
186186
runs-on: ${{ matrix.os }}
187187
container: ${{ (startsWith(matrix.os, 'ubuntu') && 'ubuntu:20.04') || null }}
188188
steps:
@@ -220,10 +220,6 @@ jobs:
220220
echo "$HOME/.pyenv/shims" >> $GITHUB_PATH
221221
echo "PYENV_ROOT=$HOME/.pyenv" >> $GITHUB_ENV
222222
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
227223
pyenv install $PYTHON_VERSION
228224
pyenv global $PYTHON_VERSION
229225
env:

0 commit comments

Comments
 (0)