Skip to content

Commit a07f300

Browse files
authored
chore: bump default python versions (#1425)
Work towards #1396
1 parent daca843 commit a07f300

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ A brief description of the categories of changes:
2121

2222
### Changed
2323

24+
* Python version patch level bumps:
25+
* 3.8.15 -> 3.8.17
26+
* 3.9.17 -> 3.9.18
27+
* 3.10.12 -> 3.10.13
28+
* 3.11.4 -> 3.11.5
29+
2430
* (deps) Upgrade rules_go 0.39.1 -> 0.41.0; this is so gazelle integration works with upcoming Bazel versions
2531

2632
* (multi-version) The `distribs` attribute is no longer propagated. This

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ _py_gazelle_deps()
7272
# Install twine for our own runfiles wheel publishing.
7373
# Eventually we might want to install twine automatically for users too, see:
7474
# https://github.com/bazelbuild/rules_python/issues/1016.
75-
load("@python//3.11.4:defs.bzl", "interpreter")
75+
load("@python//3.11.5:defs.bzl", "interpreter")
7676
load("@rules_python//python:pip.bzl", "pip_parse")
7777

7878
pip_parse(

python/versions.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,10 @@ TOOL_VERSIONS = {
336336

337337
# buildifier: disable=unsorted-dict-items
338338
MINOR_MAPPING = {
339-
"3.8": "3.8.15",
340-
"3.9": "3.9.17",
341-
"3.10": "3.10.12",
342-
"3.11": "3.11.4",
339+
"3.8": "3.8.17",
340+
"3.9": "3.9.18",
341+
"3.10": "3.10.13",
342+
"3.11": "3.11.5",
343343
}
344344

345345
PLATFORMS = {

0 commit comments

Comments
 (0)