File tree Expand file tree Collapse file tree 6 files changed +116
-253
lines changed Expand file tree Collapse file tree 6 files changed +116
-253
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ BEGIN_UNRELEASED_TEMPLATE
3030
3131{#v0-0-0-removed}
3232### Removed
33+ * (toolchain) Remove all of the python 3.9 toolchain versions except for the `3.9.25`.
34+ This version has reached EOL and will no longer receive any security fixes, please update to
35+ `3.10` or above.
3336
34- * Nothing removed.
3537{#v0-0-0-changed}
3638### Changed
37- * Nothing changed .
39+ * (toolchains) Use toolchains from the [20251031] release .
3840
3941{#v0-0-0-fixed}
4042### Fixed
@@ -43,8 +45,9 @@ BEGIN_UNRELEASED_TEMPLATE
4345
4446{#v0-0-0-added}
4547### Added
46- * Nothing added .
48+ * (toolchains) `3.9.25` Python toolchain from [20251031] release .
4749
50+ [20251031]: https://github.com/astral-sh/python-build-standalone/releases/tag/20251031
4851
4952END_UNRELEASED_TEMPLATE
5053-->
Original file line number Diff line number Diff line change 2626 "--universal" ,
2727 "--python-version=3.9" ,
2828 ],
29- python_version = "3.9.19 " ,
29+ python_version = "3.9" ,
3030)
3131
3232lock (
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ python.override(
5555 # require versions not listed here.
5656 # available_python_versions = [
5757 # "3.10.9",
58- # "3.9.18",
5958 # "3.9.19",
6059 # # The following is used by the `other_module` and we need to include it here
6160 # # as well.
@@ -65,7 +64,7 @@ python.override(
6564 # instead of rules_python's defaulting to the latest available version,
6665 # controls what full version is used when `3.x` is requested.
6766 minor_mapping = {
68- "3.9" : "3.9.19 " ,
67+ "3.9" : "3.9.25 " ,
6968 },
7069)
7170
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ local_path_override(
99python = use_extension ("@rules_python//python/extensions:python.bzl" , "python" )
1010python .toolchain (
1111 # We can specify the exact version.
12- python_version = "3.9.13 " ,
12+ python_version = "3.9.25 " ,
1313)
1414
1515# You can use this repo mapping to ensure that your BUILD.bazel files don't need
1616# to be updated when the python version changes to a different `3.9` version.
1717use_repo (
1818 python ,
19- python_3_9 = "python_3_9_13 " ,
19+ python_3_9 = "python_3_9_25 " ,
2020)
2121
2222pip = use_extension ("@rules_python//python/extensions:pip.bzl" , "pip" )
@@ -34,7 +34,7 @@ pip.parse(
3434 },
3535 hub_name = "pypi" ,
3636 # We need to use the same version here as in the `python.toolchain` call.
37- python_version = "3.9.13 " ,
37+ python_version = "3.9.25 " ,
3838 requirements_lock = "//:requirements_lock.txt" ,
3939 requirements_windows = "//:requirements_windows.txt" ,
4040)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ py_repositories()
1111
1212python_register_toolchains (
1313 name = "python_3_9" ,
14- python_version = "3.9.13 " ,
14+ python_version = "3.9.25 " ,
1515)
1616
1717load ("@rules_python//python:pip.bzl" , "pip_parse" )
You can’t perform that action at this time.
0 commit comments