Skip to content

Commit 1db44e4

Browse files
committed
Use official Python version 3.14
1 parent 7ed3b57 commit 1db44e4

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

ci/docker/python-free-threaded-wheel-windows-test-vs2022.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ARG python=3.13
2828

2929
# hadolint ignore=SC1072
3030
RUN (if "%python%"=="3.13" setx PYTHON_VERSION "3.13.1") & \
31-
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0-rc3")
31+
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0")
3232

3333
SHELL ["powershell", "-NoProfile", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
3434
RUN $version = $env:PYTHON_VERSION; \

ci/docker/python-free-threaded-wheel-windows-vs2022.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ FROM ${base}
2727
ARG python=3.13
2828

2929
RUN (if "%python%"=="3.13" setx PYTHON_VERSION "3.13.1") & \
30-
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0-rc3")
30+
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0")
3131

3232
SHELL ["powershell", "-NoProfile", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
3333
RUN $version = $env:PYTHON_VERSION; \

ci/docker/python-wheel-windows-test-vs2022.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN (if "%python%"=="3.10" setx PYTHON_VERSION "3.10.11" && setx PYTHON_CMD "py
3232
(if "%python%"=="3.11" setx PYTHON_VERSION "3.11.9" && setx PYTHON_CMD "py -3.11") & \
3333
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.10" && setx PYTHON_CMD "py -3.12") & \
3434
(if "%python%"=="3.13" setx PYTHON_VERSION "3.13.7" && setx PYTHON_CMD "py -3.13") & \
35-
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0-rc3" && setx PYTHON_CMD "py -3.14")
35+
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0" && setx PYTHON_CMD "py -3.14")
3636

3737
# hadolint ignore=DL3059
3838
RUN choco install -r -y --pre --no-progress --force python --version=%PYTHON_VERSION%

ci/docker/python-wheel-windows-vs2022.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN (if "%python%"=="3.10" setx PYTHON_VERSION "3.10.11" && setx PYTHON_CMD "py
2727
(if "%python%"=="3.11" setx PYTHON_VERSION "3.11.9" && setx PYTHON_CMD "py -3.11") & \
2828
(if "%python%"=="3.12" setx PYTHON_VERSION "3.12.10" && setx PYTHON_CMD "py -3.12") & \
2929
(if "%python%"=="3.13" setx PYTHON_VERSION "3.13.7" && setx PYTHON_CMD "py -3.13") & \
30-
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0-rc3" && setx PYTHON_CMD "py -3.14")
30+
(if "%python%"=="3.14" setx PYTHON_VERSION "3.14.0" && setx PYTHON_CMD "py -3.14")
3131

3232
RUN choco install -r -y --pre --no-progress python --version=%PYTHON_VERSION%
3333
RUN %PYTHON_CMD% -m pip install -U pip setuptools

ci/scripts/install_python.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,7 @@ full_version=${versions[$2]}
4848
if [ "$platform" = "macOS" ]; then
4949
echo "Downloading Python installer..."
5050

51-
if [ "$version" = "3.14" ] || [ "$version" = "3.14t" ];
52-
then
53-
fname="python-${full_version}rc3-macos11.pkg"
54-
else
55-
fname="python-${full_version}-macos11.pkg"
56-
fi
51+
fname="python-${full_version}-macos11.pkg"
5752
wget "https://www.python.org/ftp/python/${full_version}/${fname}"
5853

5954
echo "Installing Python..."

dev/tasks/python-wheels/github.linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
PYTHON: "{{ python_version }}"
4444
PYTHON_ABI_TAG: "{{ python_abi_tag }}"
4545
{% if python_version == "3.14" %}
46-
PYTHON_IMAGE_TAG: "3.14-rc"
47-
PYTHON_PATCH_VERSION: "3.14.0rc3"
46+
PYTHON_IMAGE_TAG: "3.14"
47+
PYTHON_PATCH_VERSION: "3.14.0"
4848
{% elif python_version == "3.13" %}
4949
PYTHON_IMAGE_TAG: "{{ python_version }}"
5050
PYTHON_PATCH_VERSION: "3.13.7"

0 commit comments

Comments
 (0)