Skip to content

Commit d598085

Browse files
phlaxf0rmiga
andauthored
python: Update minor toolchain versions (#707)
* python: Update 3.10 -> 3.10.4 * keep-existing-version Signed-off-by: Ryan Northey <[email protected]> * update-minors Signed-off-by: Ryan Northey <[email protected]> * msvc-shared Signed-off-by: Ryan Northey <[email protected]> * minor-mapping Signed-off-by: Ryan Northey <[email protected]> Co-authored-by: Thulio Ferraz Assis <[email protected]>
1 parent b5c0c0b commit d598085

File tree

1 file changed

+36
-3
lines changed

1 file changed

+36
-3
lines changed

python/versions.bzl

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@ TOOL_VERSIONS = {
4747
},
4848
"strip_prefix": "python",
4949
},
50+
"3.8.13": {
51+
"url": "20220502/cpython-{python_version}+20220502-{platform}-{build}.tar.gz",
52+
"sha256": {
53+
"aarch64-apple-darwin": "ba604867d8c6e0a1a85b1be789cad4c69af8a1699043f51e8a85998b55979127",
54+
# no aarch64-unknown-linux-gnu build available for 3.8.13
55+
"x86_64-apple-darwin": "52e3541f41d165002e19a60e11dcc145e90ffe1fe8a6f94b17d5b72a674674ea",
56+
"x86_64-pc-windows-msvc": "1435b77b4d89f2a99719918fcf917a67cd711cad46f67516bed2462d18fbefb3",
57+
"x86_64-unknown-linux-gnu": "884c6c4605c11685164237bad5f8f2773edcf3abb0637a83efa7912a54f658b3",
58+
},
59+
"strip_prefix": "python",
60+
},
5061
"3.9.10": {
5162
"url": "20220227/cpython-{python_version}+20220227-{platform}-{build}.tar.gz",
5263
"sha256": {
@@ -58,6 +69,17 @@ TOOL_VERSIONS = {
5869
},
5970
"strip_prefix": "python",
6071
},
72+
"3.9.12": {
73+
"url": "20220502/cpython-{python_version}+20220502-{platform}-{build}.tar.gz",
74+
"sha256": {
75+
"aarch64-apple-darwin": "8dee06c07cc6429df34b6abe091a4684a86f7cec76f5d1ccc1c3ce2bd11168df",
76+
"aarch64-unknown-linux-gnu": "2ee1426c181e65133e57dc55c6a685cb1fb5e63ef02d684b8a667d5c031c4203",
77+
"x86_64-apple-darwin": "2453ba7f76b3df3310353b48c881d6cff622ba06e30d2b6ae91588b2bc9e481a",
78+
"x86_64-pc-windows-msvc": "3024147fd987d9e1b064a3d94932178ff8e0fe98cfea955704213c0762fee8df",
79+
"x86_64-unknown-linux-gnu": "ccca12f698b3b810d79c52f007078f520d588232a36bc12ede944ec3ea417816",
80+
},
81+
"strip_prefix": "python",
82+
},
6183
"3.10.2": {
6284
"url": "20220227/cpython-{python_version}+20220227-{platform}-{build}.tar.gz",
6385
"sha256": {
@@ -69,13 +91,24 @@ TOOL_VERSIONS = {
6991
},
7092
"strip_prefix": "python",
7193
},
94+
"3.10.4": {
95+
"url": "20220502/cpython-{python_version}+20220502-{platform}-{build}.tar.gz",
96+
"sha256": {
97+
"aarch64-apple-darwin": "2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2",
98+
"aarch64-unknown-linux-gnu": "d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e",
99+
"x86_64-apple-darwin": "f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05",
100+
"x86_64-pc-windows-msvc": "bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d",
101+
"x86_64-unknown-linux-gnu": "f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9",
102+
},
103+
"strip_prefix": "python",
104+
},
72105
}
73106

74107
# buildifier: disable=unsorted-dict-items
75108
MINOR_MAPPING = {
76-
"3.8": "3.8.12",
77-
"3.9": "3.9.10",
78-
"3.10": "3.10.2",
109+
"3.8": "3.8.13",
110+
"3.9": "3.9.12",
111+
"3.10": "3.10.4",
79112
}
80113

81114
PLATFORMS = {

0 commit comments

Comments
 (0)