pbs-installer 2025.6.12__tar.gz → 2025.6.26__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/PKG-INFO +1 -1
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/pyproject.toml +1 -1
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/_versions.py +123 -123
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/LICENSE +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/README.md +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/__init__.py +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/__main__.py +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/_install.py +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/_utils.py +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/src/pbs_installer/py.typed +0 -0
- {pbs_installer-2025.6.12 → pbs_installer-2025.6.26}/tests/__init__.py +0 -0
|
@@ -5,54 +5,54 @@ from ._utils import PythonVersion
|
|
|
5
5
|
PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str | None]]] = {
|
|
6
6
|
PythonVersion("cpython", 3, 13, 5, True): {
|
|
7
7
|
("macos", "aarch64", False): (
|
|
8
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
9
|
-
"
|
|
8
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-aarch64-apple-darwin-freethreaded%2Bpgo%2Blto-full.tar.zst",
|
|
9
|
+
"7223a0e13d5e290fa8441b5439d08fca6fe389bcc186f918f2edd808027dcd08",
|
|
10
10
|
),
|
|
11
11
|
("linux", "aarch64", False): (
|
|
12
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
13
|
-
"
|
|
12
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-aarch64-unknown-linux-gnu-freethreaded%2Blto-full.tar.zst",
|
|
13
|
+
"8437225a6066e9f57a2ce631a73eceedffeadfe4146b7861e6ace5647a0472da",
|
|
14
14
|
),
|
|
15
15
|
("windows", "x86", False): (
|
|
16
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
17
|
-
"
|
|
16
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-i686-pc-windows-msvc-freethreaded%2Bpgo-full.tar.zst",
|
|
17
|
+
"d1d421904aa75fce2fb5cb59bacb83787fbe7fbc68dc355c7fdbd19094030473",
|
|
18
18
|
),
|
|
19
19
|
("macos", "x86_64", False): (
|
|
20
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
21
|
-
"
|
|
20
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-apple-darwin-freethreaded%2Bpgo%2Blto-full.tar.zst",
|
|
21
|
+
"869ca9d095f9e8f50fc8609d55d6a937c48a7d0b09e7ab5a3679307f9eb90c70",
|
|
22
22
|
),
|
|
23
23
|
("windows", "x86_64", False): (
|
|
24
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
25
|
-
"
|
|
24
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-pc-windows-msvc-freethreaded%2Bpgo-full.tar.zst",
|
|
25
|
+
"79c5594d758c7db8323abc23325e17955a6c6e300fec04abdeecf29632de1e34",
|
|
26
26
|
),
|
|
27
27
|
("linux", "x86_64", False): (
|
|
28
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
29
|
-
"
|
|
28
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-unknown-linux-gnu-freethreaded%2Bpgo%2Blto-full.tar.zst",
|
|
29
|
+
"a45ffc5a812c3b6db1dce34fc72c35fb3c791075c4602d0fb742c889bc6bf26d",
|
|
30
30
|
),
|
|
31
31
|
},
|
|
32
32
|
PythonVersion("cpython", 3, 13, 5, False): {
|
|
33
33
|
("macos", "aarch64", True): (
|
|
34
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
35
|
-
"
|
|
34
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-aarch64-apple-darwin-install_only.tar.gz",
|
|
35
|
+
"1aed085640a388ff979e705e827277f69e8b78048df5f7bffdde09b92ada6049",
|
|
36
36
|
),
|
|
37
37
|
("linux", "aarch64", True): (
|
|
38
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
39
|
-
"
|
|
38
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-aarch64-unknown-linux-gnu-install_only.tar.gz",
|
|
39
|
+
"f96a811e90a26b95520f135fa55594c22954602cc59ebd7967b1c3c68e42511d",
|
|
40
40
|
),
|
|
41
41
|
("windows", "x86", True): (
|
|
42
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
43
|
-
"
|
|
42
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-i686-pc-windows-msvc-install_only.tar.gz",
|
|
43
|
+
"7321d1fd0e8fd17723577f970ef64e073484c1d4bb385945a07aa91d674d2d30",
|
|
44
44
|
),
|
|
45
45
|
("macos", "x86_64", True): (
|
|
46
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
47
|
-
"
|
|
46
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-apple-darwin-install_only.tar.gz",
|
|
47
|
+
"f0ae8a9da4f3cf12a7f1435517309d9a75e819a475064d92dc39c7b21b1ee299",
|
|
48
48
|
),
|
|
49
49
|
("windows", "x86_64", True): (
|
|
50
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
51
|
-
"
|
|
50
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-pc-windows-msvc-install_only.tar.gz",
|
|
51
|
+
"e8964d26fa4678bfec69a6cfbe1eb37c703bc3799167c57a6e25f66719ded19c",
|
|
52
52
|
),
|
|
53
53
|
("linux", "x86_64", True): (
|
|
54
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
55
|
-
"
|
|
54
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.13.5%2B20250626-x86_64-unknown-linux-gnu-install_only.tar.gz",
|
|
55
|
+
"b92b2f88740c9889232bbbde9a98d3e6edd4cab1eb85fdc6ec5929516bd140e5",
|
|
56
56
|
),
|
|
57
57
|
},
|
|
58
58
|
PythonVersion("cpython", 3, 13, 4, True): {
|
|
@@ -317,52 +317,52 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str
|
|
|
317
317
|
},
|
|
318
318
|
PythonVersion("cpython", 3, 12, 11, False): {
|
|
319
319
|
("macos", "aarch64", False): (
|
|
320
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
321
|
-
"
|
|
320
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
321
|
+
"1ee2b698796d068310e49afb6b81720a84e97697dbafd3a4e0298e551ba69482",
|
|
322
322
|
),
|
|
323
323
|
("macos", "aarch64", True): (
|
|
324
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
325
|
-
"
|
|
324
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-aarch64-apple-darwin-install_only.tar.gz",
|
|
325
|
+
"47a3ba9baaa2f75389a0374c615fa6402815d512a7c583c52db3554e6892aa4e",
|
|
326
326
|
),
|
|
327
327
|
("linux", "aarch64", False): (
|
|
328
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
329
|
-
"
|
|
328
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
329
|
+
"b6a101d63ef393805fd228b639e5d4ba3e74668422522936af7103daeb1ef7eb",
|
|
330
330
|
),
|
|
331
331
|
("linux", "aarch64", True): (
|
|
332
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
333
|
-
"
|
|
332
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-aarch64-unknown-linux-gnu-install_only.tar.gz",
|
|
333
|
+
"d0367c2310f6a12aa13d8b4a1d378aba9f6813d941339173a2c89a6d30c5829b",
|
|
334
334
|
),
|
|
335
335
|
("windows", "x86", True): (
|
|
336
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
337
|
-
"
|
|
336
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-i686-pc-windows-msvc-install_only.tar.gz",
|
|
337
|
+
"7aecdaa004a609ad36862814a9ad26a6e987d5882926407a88d09b59f0f61732",
|
|
338
338
|
),
|
|
339
339
|
("windows", "x86", False): (
|
|
340
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
341
|
-
"
|
|
340
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-i686-pc-windows-msvc-pgo-full.tar.zst",
|
|
341
|
+
"6828ebbd7a0a58e923d601846a54c6addd6e825f38e507ec0007158b2fd8a853",
|
|
342
342
|
),
|
|
343
343
|
("macos", "x86_64", False): (
|
|
344
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
345
|
-
"
|
|
344
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
345
|
+
"b051f5f7b2cee64df1b72f77c331f5debd6bf6c25e9ba54ac71424f1d6a11f98",
|
|
346
346
|
),
|
|
347
347
|
("macos", "x86_64", True): (
|
|
348
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
349
|
-
"
|
|
348
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-apple-darwin-install_only.tar.gz",
|
|
349
|
+
"e1f19f8246d01e8e048c89fef8b739768db16dc15559256ce70c1a37ace7243f",
|
|
350
350
|
),
|
|
351
351
|
("windows", "x86_64", True): (
|
|
352
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
353
|
-
"
|
|
352
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-pc-windows-msvc-install_only.tar.gz",
|
|
353
|
+
"36c5db0f7cf0340286fe322795cb0ee80fd92443851f8ccf8a87720a767178c7",
|
|
354
354
|
),
|
|
355
355
|
("windows", "x86_64", False): (
|
|
356
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
357
|
-
"
|
|
356
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-pc-windows-msvc-pgo-full.tar.zst",
|
|
357
|
+
"1e35cb27bfcb8a671af57b84d77675a70e2e94bd1efb313dff124f3a3250e995",
|
|
358
358
|
),
|
|
359
359
|
("linux", "x86_64", False): (
|
|
360
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
361
|
-
"
|
|
360
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
361
|
+
"c5c63e42881f99da57c7a8f4796d7b0c7a351483d44a6c5fa72f8d9132b82c34",
|
|
362
362
|
),
|
|
363
363
|
("linux", "x86_64", True): (
|
|
364
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
365
|
-
"
|
|
364
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.12.11%2B20250626-x86_64-unknown-linux-gnu-install_only.tar.gz",
|
|
365
|
+
"b6c54f06dc4af6f7ffe007844914737dbe1f95cb45ce2bcc84b5ca0697e4f320",
|
|
366
366
|
),
|
|
367
367
|
},
|
|
368
368
|
PythonVersion("cpython", 3, 12, 10, False): {
|
|
@@ -917,52 +917,52 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str
|
|
|
917
917
|
},
|
|
918
918
|
PythonVersion("cpython", 3, 11, 13, False): {
|
|
919
919
|
("macos", "aarch64", False): (
|
|
920
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
921
|
-
"
|
|
920
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
921
|
+
"b6c5c48e6e3f24b4a14c026a9e7fdd7eade45d15090908eebcfa722f125ddc14",
|
|
922
922
|
),
|
|
923
923
|
("macos", "aarch64", True): (
|
|
924
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
925
|
-
"
|
|
924
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-aarch64-apple-darwin-install_only.tar.gz",
|
|
925
|
+
"fd3bc3b011b49fc66ccc85099c7ec646242f5802f7759e5c26f06a9d41476ae2",
|
|
926
926
|
),
|
|
927
927
|
("linux", "aarch64", False): (
|
|
928
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
929
|
-
"
|
|
928
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
929
|
+
"e374cedfe3ddaebf25511e0b8569a52ffdd346da43c9953acee6642900940410",
|
|
930
930
|
),
|
|
931
931
|
("linux", "aarch64", True): (
|
|
932
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
933
|
-
"
|
|
932
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-aarch64-unknown-linux-gnu-install_only.tar.gz",
|
|
933
|
+
"7b65d27357f3101576e6a30ebfd1462d794a02be2c2068abfb147480a8a494df",
|
|
934
934
|
),
|
|
935
935
|
("windows", "x86", True): (
|
|
936
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
937
|
-
"
|
|
936
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-i686-pc-windows-msvc-install_only.tar.gz",
|
|
937
|
+
"9da4deedc42147f1dd91b1d2cb281633b0ae6fe71323e7a0449ffa7474e19380",
|
|
938
938
|
),
|
|
939
939
|
("windows", "x86", False): (
|
|
940
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
941
|
-
"
|
|
940
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-i686-pc-windows-msvc-pgo-full.tar.zst",
|
|
941
|
+
"a48df92eeb74195679bde02b177489acdaddbe10b53f6888791515a6343ba4e4",
|
|
942
942
|
),
|
|
943
943
|
("macos", "x86_64", False): (
|
|
944
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
945
|
-
"
|
|
944
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
945
|
+
"831c79f87cec692a35b038d972a1344fa71103f3a439c670d02123d3e5ef2d75",
|
|
946
946
|
),
|
|
947
947
|
("macos", "x86_64", True): (
|
|
948
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
949
|
-
"
|
|
948
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-apple-darwin-install_only.tar.gz",
|
|
949
|
+
"82a709c1d8220f26a0d3b35a566047e1fed0a41d39013953720ce92dac527a3d",
|
|
950
950
|
),
|
|
951
951
|
("windows", "x86_64", True): (
|
|
952
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
953
|
-
"
|
|
952
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-pc-windows-msvc-install_only.tar.gz",
|
|
953
|
+
"5cf5f87a9131e179007ca830e862d034c30759d07d0d8f92fc552593247a43f2",
|
|
954
954
|
),
|
|
955
955
|
("windows", "x86_64", False): (
|
|
956
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
957
|
-
"
|
|
956
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-pc-windows-msvc-pgo-full.tar.zst",
|
|
957
|
+
"993cccaae7228938e65c1d61cb5a9e0d6469ac89f4d0fe15f94e3a85e2767f1b",
|
|
958
958
|
),
|
|
959
959
|
("linux", "x86_64", False): (
|
|
960
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
961
|
-
"
|
|
960
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
961
|
+
"6295008221035c8528020fe88708a4cd7b0a359f20f5173a2cbd9f11ef039eb5",
|
|
962
962
|
),
|
|
963
963
|
("linux", "x86_64", True): (
|
|
964
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
965
|
-
"
|
|
964
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.11.13%2B20250626-x86_64-unknown-linux-gnu-install_only.tar.gz",
|
|
965
|
+
"3bf2066dd96c86aacfd2b016699667e2a0bcb97ec63fb7791e230c7deda0a90f",
|
|
966
966
|
),
|
|
967
967
|
},
|
|
968
968
|
PythonVersion("cpython", 3, 11, 12, False): {
|
|
@@ -1548,53 +1548,53 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str
|
|
|
1548
1548
|
),
|
|
1549
1549
|
},
|
|
1550
1550
|
PythonVersion("cpython", 3, 10, 18, False): {
|
|
1551
|
-
("
|
|
1552
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1553
|
-
"
|
|
1551
|
+
("macos", "aarch64", False): (
|
|
1552
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
1553
|
+
"1344449005cd273298d7a0d892bf20e9e766e46f0a4a9dc231b3389a4c56eaac",
|
|
1554
1554
|
),
|
|
1555
|
-
("linux", "aarch64",
|
|
1556
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1557
|
-
"
|
|
1555
|
+
("linux", "aarch64", False): (
|
|
1556
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
1557
|
+
"37857daa76d62648519a8b1448faa4541380a69acbc0224d0d6af882d0e60cc0",
|
|
1558
1558
|
),
|
|
1559
1559
|
("macos", "aarch64", True): (
|
|
1560
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1561
|
-
"
|
|
1560
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-aarch64-apple-darwin-install_only_stripped.tar.gz",
|
|
1561
|
+
"e610b8bb397513908b814cb2a1c9f95e97aac33855840bf69f1442ff040ddd33",
|
|
1562
1562
|
),
|
|
1563
|
-
("
|
|
1564
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1565
|
-
"
|
|
1563
|
+
("linux", "aarch64", True): (
|
|
1564
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-aarch64-unknown-linux-gnu-install_only.tar.gz",
|
|
1565
|
+
"aa8028c5290167769e604d10142e0d80feeb0689029da9659a6a75da0dfcbc4a",
|
|
1566
1566
|
),
|
|
1567
1567
|
("windows", "x86", True): (
|
|
1568
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1569
|
-
"
|
|
1568
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-i686-pc-windows-msvc-install_only.tar.gz",
|
|
1569
|
+
"71c3912637a0565c85a5419d2f6666c293a0fda39b44d2fd7f2ecc8633fc83a6",
|
|
1570
1570
|
),
|
|
1571
1571
|
("windows", "x86", False): (
|
|
1572
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1573
|
-
"
|
|
1572
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-i686-pc-windows-msvc-pgo-full.tar.zst",
|
|
1573
|
+
"5544df16e147e9771716ffee0e1ce1227e4a9f865928d21bc56ad5ccc024ae45",
|
|
1574
1574
|
),
|
|
1575
1575
|
("macos", "x86_64", False): (
|
|
1576
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1577
|
-
"
|
|
1576
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
1577
|
+
"35b71071f02d71e67b13cc7f624bc5dc03e85c0ffc321a61ff3dd81ed134399f",
|
|
1578
1578
|
),
|
|
1579
1579
|
("macos", "x86_64", True): (
|
|
1580
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1581
|
-
"
|
|
1580
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-apple-darwin-install_only.tar.gz",
|
|
1581
|
+
"11d8a8b15b954ae3d232b0c7b10cb9f33f4cfa71afc09a86df46303bed86cc90",
|
|
1582
1582
|
),
|
|
1583
1583
|
("windows", "x86_64", True): (
|
|
1584
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1585
|
-
"
|
|
1584
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-pc-windows-msvc-install_only.tar.gz",
|
|
1585
|
+
"b294e565008d3b1e4c773613fc6e5f8f858c834228059b1dc5de9e2332a88338",
|
|
1586
1586
|
),
|
|
1587
1587
|
("windows", "x86_64", False): (
|
|
1588
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1589
|
-
"
|
|
1588
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-pc-windows-msvc-pgo-full.tar.zst",
|
|
1589
|
+
"65fde6f83ff9e84e4031623b00d3f3853cfd11ab5fe94d29c29c854571e7f2fb",
|
|
1590
1590
|
),
|
|
1591
1591
|
("linux", "x86_64", False): (
|
|
1592
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1593
|
-
"
|
|
1592
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
1593
|
+
"16afecbb7b79ad3b62bb8da6d38eaa5c275f33d4f462a2ff0a9faefacd4bb708",
|
|
1594
1594
|
),
|
|
1595
1595
|
("linux", "x86_64", True): (
|
|
1596
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
1597
|
-
"
|
|
1596
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.10.18%2B20250626-x86_64-unknown-linux-gnu-install_only.tar.gz",
|
|
1597
|
+
"b3085609d06eda0bdda3f95f084e611e845f973dfc10480a71ad8a067c3eaeb5",
|
|
1598
1598
|
),
|
|
1599
1599
|
},
|
|
1600
1600
|
PythonVersion("cpython", 3, 10, 17, False): {
|
|
@@ -2483,52 +2483,52 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str
|
|
|
2483
2483
|
},
|
|
2484
2484
|
PythonVersion("cpython", 3, 9, 23, False): {
|
|
2485
2485
|
("macos", "aarch64", False): (
|
|
2486
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2487
|
-
"
|
|
2486
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
2487
|
+
"e18c3a6e7deef2b36323295cd7a29ad37e4a9d2ae1399b0bb596b60b5fcfa095",
|
|
2488
2488
|
),
|
|
2489
2489
|
("macos", "aarch64", True): (
|
|
2490
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2491
|
-
"
|
|
2490
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-aarch64-apple-darwin-install_only.tar.gz",
|
|
2491
|
+
"04337413914bda368c7087d28ea76cd7ba1185b8f367298a1026d14b898ffcb9",
|
|
2492
2492
|
),
|
|
2493
2493
|
("linux", "aarch64", False): (
|
|
2494
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2495
|
-
"
|
|
2494
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
2495
|
+
"9a4432b68831a4337d4d7332b066d37d32dca7c0720c5d037a139d2156046161",
|
|
2496
2496
|
),
|
|
2497
2497
|
("linux", "aarch64", True): (
|
|
2498
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2499
|
-
"
|
|
2498
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-aarch64-unknown-linux-gnu-install_only.tar.gz",
|
|
2499
|
+
"ba3a45fd82b4c2fa8ef3e29a9d6be58000ca710de08cb59a225e8ff4c14b5298",
|
|
2500
2500
|
),
|
|
2501
2501
|
("windows", "x86", True): (
|
|
2502
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2503
|
-
"
|
|
2502
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-i686-pc-windows-msvc-install_only.tar.gz",
|
|
2503
|
+
"ab4df2c0a9de7c2827b4cbc8e9ffeb0e9fcab1452c3ce4b478e9251149b5e25a",
|
|
2504
2504
|
),
|
|
2505
2505
|
("windows", "x86", False): (
|
|
2506
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2507
|
-
"
|
|
2506
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-i686-pc-windows-msvc-pgo-full.tar.zst",
|
|
2507
|
+
"c1458e19a1e9e021e9eacbd8b7cc7bd80692d177cf7c37aff052f7901a0588b9",
|
|
2508
2508
|
),
|
|
2509
2509
|
("macos", "x86_64", False): (
|
|
2510
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2511
|
-
"
|
|
2510
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
2511
|
+
"bffdfb0f17434c5c9b11a34b862eaf7b595bfef8ffe50db8555a31fd5047f8a4",
|
|
2512
2512
|
),
|
|
2513
2513
|
("macos", "x86_64", True): (
|
|
2514
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2515
|
-
"
|
|
2514
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-apple-darwin-install_only.tar.gz",
|
|
2515
|
+
"439f067760ab17274c1b3983e24b4d31675b8d4b4653a864688497b67a8e596b",
|
|
2516
2516
|
),
|
|
2517
2517
|
("windows", "x86_64", True): (
|
|
2518
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2519
|
-
"
|
|
2518
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-pc-windows-msvc-install_only.tar.gz",
|
|
2519
|
+
"413a85ad392d3de68f4865f38e91d0e3ba49dffa5ddce57a0aee9fce0bc3bedb",
|
|
2520
2520
|
),
|
|
2521
2521
|
("windows", "x86_64", False): (
|
|
2522
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2523
|
-
"
|
|
2522
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-pc-windows-msvc-pgo-full.tar.zst",
|
|
2523
|
+
"8ada8bb446ac0942b0aa3e83090d46f7d5e85512e547cedd32f65dd4d1f94f92",
|
|
2524
2524
|
),
|
|
2525
2525
|
("linux", "x86_64", False): (
|
|
2526
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2527
|
-
"
|
|
2526
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
2527
|
+
"45b0ec631e0cef7901144069d306fb86cc6cff211bfffe4ecc77711e6195786b",
|
|
2528
2528
|
),
|
|
2529
2529
|
("linux", "x86_64", True): (
|
|
2530
|
-
"https://github.com/astral-sh/python-build-standalone/releases/download/
|
|
2531
|
-
"
|
|
2530
|
+
"https://github.com/astral-sh/python-build-standalone/releases/download/20250626/cpython-3.9.23%2B20250626-x86_64-unknown-linux-gnu-install_only.tar.gz",
|
|
2531
|
+
"f9c1835ca8f0d9947d0d6646b737b91368f999d67ebd738dc2958b6e323f799f",
|
|
2532
2532
|
),
|
|
2533
2533
|
},
|
|
2534
2534
|
PythonVersion("cpython", 3, 9, 22, False): {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|