pbs-installer 2024.4.1__tar.gz → 2024.8.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pbs-installer
3
- Version: 2024.4.1
3
+ Version: 2024.8.9
4
4
  Summary: Installer for Python Build Standalone
5
5
  Author-Email: Frost Ming <me@frostming.com>
6
6
  License: MIT
@@ -7,7 +7,7 @@ authors = [
7
7
  requires-python = ">=3.8"
8
8
  readme = "README.md"
9
9
  dynamic = []
10
- version = "2024.4.1"
10
+ version = "2024.8.9"
11
11
 
12
12
  [project.license]
13
13
  text = "MIT"
@@ -48,6 +48,9 @@ doc = [
48
48
  "mkdocs-material>=9.5.14",
49
49
  "mkdocstrings[python]>=0.24",
50
50
  ]
51
+ dev = [
52
+ "mypy>=1.9.0",
53
+ ]
51
54
 
52
55
  [tool.ruff]
53
56
  line-length = 100
@@ -57,3 +60,11 @@ target-version = "py310"
57
60
  extend-select = [
58
61
  "I",
59
62
  ]
63
+
64
+ [tool.mypy]
65
+ strict = true
66
+ files = [
67
+ "src",
68
+ "tests",
69
+ ]
70
+ pretty = true
@@ -9,7 +9,7 @@ from ._install import install
9
9
  from ._utils import get_available_arch_platforms
10
10
 
11
11
 
12
- def _setup_logger(verbose: bool):
12
+ def _setup_logger(verbose: bool) -> None:
13
13
  logger = logging.getLogger("pbs_installer")
14
14
  handler = logging.StreamHandler()
15
15
  handler.setFormatter(logging.Formatter("%(levelname)s: %(message)s"))
@@ -46,7 +46,7 @@ class ListAction(Action):
46
46
  print(f"- {version}")
47
47
 
48
48
 
49
- def main():
49
+ def main() -> None:
50
50
  archs, platforms = get_available_arch_platforms()
51
51
  parser = ArgumentParser("pbs-install", description="Installer for Python Build Standalone")
52
52
  install_group = parser.add_argument_group("Install Arguments")
@@ -4,7 +4,7 @@ import hashlib
4
4
  import logging
5
5
  import os
6
6
  import tempfile
7
- from typing import TYPE_CHECKING, Optional, Tuple
7
+ from typing import TYPE_CHECKING, Optional, Tuple, cast
8
8
  from urllib.parse import unquote
9
9
 
10
10
  from ._utils import PythonVersion, get_arch_platform
@@ -13,6 +13,10 @@ if TYPE_CHECKING:
13
13
  import httpx
14
14
  from _typeshed import StrPath
15
15
 
16
+ from typing import Literal
17
+
18
+ PythonImplementation = Literal["cpython", "pypy"]
19
+
16
20
  logger = logging.getLogger(__name__)
17
21
  THIS_ARCH, THIS_PLATFORM = get_arch_platform()
18
22
  PythonFile = Tuple[str, Optional[str]]
@@ -32,7 +36,7 @@ def get_download_link(
32
36
  request: str,
33
37
  arch: str = THIS_ARCH,
34
38
  platform: str = THIS_PLATFORM,
35
- implementation: str = "cpython",
39
+ implementation: PythonImplementation = "cpython",
36
40
  build_dir: bool = False,
37
41
  ) -> tuple[PythonVersion, PythonFile]:
38
42
  """Get the download URL matching the given requested version.
@@ -140,6 +144,7 @@ def install_file(
140
144
  destination,
141
145
  original_filename,
142
146
  )
147
+ filename = cast(str, filename)
143
148
  if original_filename.endswith(".zst"):
144
149
  unpack_zst(filename, destination)
145
150
  elif original_filename.endswith(".zip"):
@@ -155,7 +160,7 @@ def install(
155
160
  client: httpx.Client | None = None,
156
161
  arch: str | None = None,
157
162
  platform: str | None = None,
158
- implementation: str = "cpython",
163
+ implementation: PythonImplementation = "cpython",
159
164
  build_dir: bool = False,
160
165
  ) -> None:
161
166
  """Download and install the requested python version.
@@ -2,7 +2,107 @@
2
2
  from __future__ import annotations
3
3
  from ._utils import PythonVersion
4
4
 
5
- PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None]]] = {
5
+ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str | None]]] = {
6
+ PythonVersion("cpython", 3, 12, 4): {
7
+ ("macos", "aarch64", False): (
8
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
9
+ "3b017ab70e2f11b95d909317fc4e76c000ece588461058a642bf74db77cec267",
10
+ ),
11
+ ("macos", "aarch64", True): (
12
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-aarch64-apple-darwin-install_only.tar.gz",
13
+ "1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15",
14
+ ),
15
+ ("linux", "aarch64", False): (
16
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-aarch64-unknown-linux-gnu-lto-full.tar.zst",
17
+ "05cbc91569f94a07f96a7ae04b62e19a9d7a3e74400d7d6b5b042f17285d2601",
18
+ ),
19
+ ("linux", "aarch64", True): (
20
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-aarch64-unknown-linux-gnu-install_only.tar.gz",
21
+ "a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7",
22
+ ),
23
+ ("windows", "x86", True): (
24
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-i686-pc-windows-msvc-install_only.tar.gz",
25
+ "b66593869efa4e15412740681135a61956fe73a63fe6c37ce26d35c9fd008576",
26
+ ),
27
+ ("windows", "x86", False): (
28
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
29
+ "4d321e97e499610c887da89682c796967dba9337a1102e9e5d98d65cef5dde52",
30
+ ),
31
+ ("macos", "x86_64", False): (
32
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
33
+ "60cfc2465326cb44303e3a8904d4e606ec54aaa41be378532e219f05f06ef37d",
34
+ ),
35
+ ("macos", "x86_64", True): (
36
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-apple-darwin-install_only.tar.gz",
37
+ "4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed",
38
+ ),
39
+ ("windows", "x86_64", True): (
40
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-pc-windows-msvc-install_only.tar.gz",
41
+ "74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450",
42
+ ),
43
+ ("windows", "x86_64", False): (
44
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
45
+ "369d3a8a205cdbc754034f304ecedd4da0120cc9c71b6baac0147908aba15ece",
46
+ ),
47
+ ("linux", "x86_64", False): (
48
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
49
+ "164f9ca029de9220d6f473e835b06c14684905912aee73312c560238fc2051d6",
50
+ ),
51
+ ("linux", "x86_64", True): (
52
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4%2B20240726-x86_64-unknown-linux-gnu-install_only.tar.gz",
53
+ "e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac",
54
+ ),
55
+ },
56
+ PythonVersion("cpython", 3, 12, 3): {
57
+ ("macos", "aarch64", False): (
58
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
59
+ "fa2b8c377f17dfb097a93c0fba217d93075a7ceba0cc877066e95be969e6b73d",
60
+ ),
61
+ ("macos", "aarch64", True): (
62
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
63
+ "ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e",
64
+ ),
65
+ ("linux", "aarch64", False): (
66
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
67
+ "a4f17d1e3b4ea0e4c2a3664f232c0857979522936af582f7de92b57050220f74",
68
+ ),
69
+ ("linux", "aarch64", True): (
70
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
71
+ "ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d",
72
+ ),
73
+ ("windows", "x86", True): (
74
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
75
+ "bd723ad1aa05551627715a428660250f0e74db0f1421b03f399235772057ef55",
76
+ ),
77
+ ("windows", "x86", False): (
78
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
79
+ "31bb3f579f3dcbbf3bf1dc71a188112e821cdfc77d21c9dbfe82ea78538110e1",
80
+ ),
81
+ ("macos", "x86_64", False): (
82
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
83
+ "e49da3f702da08a3e38d01c776cc2356e427217681964ff64a7880507e224a3c",
84
+ ),
85
+ ("macos", "x86_64", True): (
86
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
87
+ "c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8",
88
+ ),
89
+ ("windows", "x86_64", True): (
90
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
91
+ "f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279",
92
+ ),
93
+ ("windows", "x86_64", False): (
94
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
95
+ "776568c92c5f3b47dbf5f17c1c58578f70d75a32654419a158aa8bdc6f95b09a",
96
+ ),
97
+ ("linux", "x86_64", False): (
98
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
99
+ "e51f6676a24c3551657347ef97963164eac801df0a62afcba8e0e28ebb62acee",
100
+ ),
101
+ ("linux", "x86_64", True): (
102
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
103
+ "a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6",
104
+ ),
105
+ },
6
106
  PythonVersion("cpython", 3, 12, 2): {
7
107
  ("macos", "aarch64", False): (
8
108
  "https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
@@ -153,6 +253,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
153
253
  "e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9",
154
254
  ),
155
255
  },
256
+ PythonVersion("cpython", 3, 11, 9): {
257
+ ("macos", "aarch64", False): (
258
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
259
+ "38ef401284a94090fb5fb52a841ed142c7726857d121d5578ca7926c8643c148",
260
+ ),
261
+ ("macos", "aarch64", True): (
262
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-aarch64-apple-darwin-install_only.tar.gz",
263
+ "cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3",
264
+ ),
265
+ ("linux", "aarch64", False): (
266
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-aarch64-unknown-linux-gnu-lto-full.tar.zst",
267
+ "6ec00fd43c8b1e4ff81944f9c641a4a6a85024bb84bfeff6615f6f19047daca5",
268
+ ),
269
+ ("linux", "aarch64", True): (
270
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-aarch64-unknown-linux-gnu-install_only.tar.gz",
271
+ "4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3",
272
+ ),
273
+ ("windows", "x86", True): (
274
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-i686-pc-windows-msvc-install_only.tar.gz",
275
+ "086f1a9fd66a17b6401f2d9c59f60d2587c936465860a7f16951066a7c5e6ecd",
276
+ ),
277
+ ("windows", "x86", False): (
278
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
279
+ "eda4f3eb3c19361d0664b83e74c31e3c784e28a6efa5f3322fed409a167c9b44",
280
+ ),
281
+ ("macos", "x86_64", False): (
282
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
283
+ "98e6204582b0b6330c97dc2f77ae87163cb12262345ef787c53b68b8a1953d05",
284
+ ),
285
+ ("macos", "x86_64", True): (
286
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-apple-darwin-install_only.tar.gz",
287
+ "dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611",
288
+ ),
289
+ ("windows", "x86_64", True): (
290
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-pc-windows-msvc-install_only.tar.gz",
291
+ "f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8",
292
+ ),
293
+ ("windows", "x86_64", False): (
294
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
295
+ "a666503ab9ea3852b9bdaa905003bb4e5d682405c715bf7a025c33ce6258c1de",
296
+ ),
297
+ ("linux", "x86_64", False): (
298
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
299
+ "ee7ab314b049db55e5c518d1ad5fd4564f55cf79646a4bf97d6b79e3e5ff688a",
300
+ ),
301
+ ("linux", "x86_64", True): (
302
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9%2B20240726-x86_64-unknown-linux-gnu-install_only.tar.gz",
303
+ "f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d",
304
+ ),
305
+ },
156
306
  PythonVersion("cpython", 3, 11, 8): {
157
307
  ("macos", "aarch64", False): (
158
308
  "https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
@@ -535,6 +685,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
535
685
  "02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423",
536
686
  ),
537
687
  },
688
+ PythonVersion("cpython", 3, 10, 14): {
689
+ ("macos", "aarch64", False): (
690
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
691
+ "f20dbd7b1f18ebf7f4cb5f1768e6525a2f328d53e8b6a7e29664418c8478ce70",
692
+ ),
693
+ ("macos", "aarch64", True): (
694
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-aarch64-apple-darwin-install_only.tar.gz",
695
+ "164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607",
696
+ ),
697
+ ("linux", "aarch64", False): (
698
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-aarch64-unknown-linux-gnu-lto-full.tar.zst",
699
+ "7f0682fe77d4ac8d44bac73c592d5bba976f204d938e22342c26aafcc1016960",
700
+ ),
701
+ ("linux", "aarch64", True): (
702
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-aarch64-unknown-linux-gnu-install_only.tar.gz",
703
+ "39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29",
704
+ ),
705
+ ("windows", "x86", True): (
706
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-i686-pc-windows-msvc-install_only.tar.gz",
707
+ "b6b42617d5583cac9f20fce7cc42cd44b5f2a999f5399dd002c478eec9f1c15f",
708
+ ),
709
+ ("windows", "x86", False): (
710
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
711
+ "99fef0c517830a5b683f213f19b2730293e03e5dca81db1a4e6b97c96e6b885d",
712
+ ),
713
+ ("macos", "x86_64", False): (
714
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
715
+ "51b73993fc99f1c6e5d9fb0b70857b50183c4e1947d4ebee50fafed55152cb5b",
716
+ ),
717
+ ("macos", "x86_64", True): (
718
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-apple-darwin-install_only.tar.gz",
719
+ "1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d",
720
+ ),
721
+ ("windows", "x86_64", True): (
722
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-pc-windows-msvc-install_only.tar.gz",
723
+ "7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3",
724
+ ),
725
+ ("windows", "x86_64", False): (
726
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
727
+ "457057db6e97d525c0dcde425ed88f5b7fb9fe75fbfc79a4aa3b15a14cba5710",
728
+ ),
729
+ ("linux", "x86_64", False): (
730
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
731
+ "d030c3f4391c31769f8ee53a70f73de7bebb297606812c5e4587240fd0afd5b1",
732
+ ),
733
+ ("linux", "x86_64", True): (
734
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14%2B20240726-x86_64-unknown-linux-gnu-install_only.tar.gz",
735
+ "32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e",
736
+ ),
737
+ },
538
738
  PythonVersion("cpython", 3, 10, 13): {
539
739
  ("macos", "aarch64", False): (
540
740
  "https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
@@ -1219,6 +1419,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
1219
1419
  None,
1220
1420
  ),
1221
1421
  },
1422
+ PythonVersion("cpython", 3, 9, 19): {
1423
+ ("macos", "aarch64", False): (
1424
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
1425
+ "7f04e96ebd9fbde4c18d1adedc1c3a3804df8919c088fdb33b1dd44a68632e39",
1426
+ ),
1427
+ ("macos", "aarch64", True): (
1428
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-aarch64-apple-darwin-install_only.tar.gz",
1429
+ "0e5a7aae57c53d7a849bc7f67764a947b626e3fe8d4d41a8eed11d9e4be0b1c6",
1430
+ ),
1431
+ ("linux", "aarch64", False): (
1432
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-aarch64-unknown-linux-gnu-lto-full.tar.zst",
1433
+ "163c4b78ed43fd46012fba8601089365e568fbdf09dd8530c0a43fa95c9ab02c",
1434
+ ),
1435
+ ("linux", "aarch64", True): (
1436
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-aarch64-unknown-linux-gnu-install_only.tar.gz",
1437
+ "05ec896db9a9d4fe8004b4e4b6a6fdc588a015fedbddb475490885b0d9c7d9b3",
1438
+ ),
1439
+ ("windows", "x86", True): (
1440
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-i686-pc-windows-msvc-install_only.tar.gz",
1441
+ "a6c20cf664afe25e00cd0600c65be95139d81375c733299f11181c75156739c3",
1442
+ ),
1443
+ ("windows", "x86", False): (
1444
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
1445
+ "1746133bdb6312a3c839c752d94edaaa4ceff6bbfe05d9dac5cf183e1d28346b",
1446
+ ),
1447
+ ("macos", "x86_64", False): (
1448
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
1449
+ "e76c9bfa292a2fbff0e47664571f52000f494155cd195f8d8e483b8d2d1af23f",
1450
+ ),
1451
+ ("macos", "x86_64", True): (
1452
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-apple-darwin-install_only.tar.gz",
1453
+ "f2ae9fcac044a329739b8c1676245e8cb6b3094416220e71823d2673bdea0bdb",
1454
+ ),
1455
+ ("windows", "x86_64", True): (
1456
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-pc-windows-msvc-install_only.tar.gz",
1457
+ "a8df6a00140055c9accb0be632e7add951d587bbe3d63c40827bbd5145d8f557",
1458
+ ),
1459
+ ("windows", "x86_64", False): (
1460
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
1461
+ "2ddd1ea39dd2ad56c774749698364256630eb95a7ca71b1c7a3af9ed2ecaa5fb",
1462
+ ),
1463
+ ("linux", "x86_64", False): (
1464
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
1465
+ "179470b65a70f77189adb5637ccc8fa5ee443fc88d74113ce0e60b5d8548bf49",
1466
+ ),
1467
+ ("linux", "x86_64", True): (
1468
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.9.19%2B20240726-x86_64-unknown-linux-gnu-install_only.tar.gz",
1469
+ "cbf94cb1c9d4b5501d9b3652f6e8400c2cab7c41dfea48d344d9e7f29692b91b",
1470
+ ),
1471
+ },
1222
1472
  PythonVersion("cpython", 3, 9, 18): {
1223
1473
  ("macos", "aarch64", False): (
1224
1474
  "https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
@@ -1969,6 +2219,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
1969
2219
  None,
1970
2220
  ),
1971
2221
  },
2222
+ PythonVersion("cpython", 3, 8, 19): {
2223
+ ("macos", "aarch64", False): (
2224
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
2225
+ "005c2439b581cf6e5de1e79a62d5a36246d07e2d5579b818a6af24d53821feae",
2226
+ ),
2227
+ ("macos", "aarch64", True): (
2228
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-aarch64-apple-darwin-install_only.tar.gz",
2229
+ "fe4af1b6bc59478d027ede43f6249cf7b9143558e171bdf8711247337623af57",
2230
+ ),
2231
+ ("linux", "aarch64", False): (
2232
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-aarch64-unknown-linux-gnu-lto-full.tar.zst",
2233
+ "a69135d4436f78ffb771bb1b3e26c89cc1747ff77cb8d4c5e23ccdaabcba7e59",
2234
+ ),
2235
+ ("linux", "aarch64", True): (
2236
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-aarch64-unknown-linux-gnu-install_only.tar.gz",
2237
+ "8dc598aca7ad43ea20119324af98862d198d8990151c734a69f0fc9d16384b46",
2238
+ ),
2239
+ ("windows", "x86", True): (
2240
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-i686-pc-windows-msvc-install_only.tar.gz",
2241
+ "4fefc9ce89d288cf0e6a089effbed3dd9f27784237023b4803e6eed0e8cd94d6",
2242
+ ),
2243
+ ("windows", "x86", False): (
2244
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
2245
+ "3cdc8c3ed907968fc2760147e44134a39cd1c3558327faa682934d09e524b0e3",
2246
+ ),
2247
+ ("macos", "x86_64", False): (
2248
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
2249
+ "d9ded43a6a5be03e770ad7e2f1a4c44e67401ed7218a2081677fa4ba7cb3e61f",
2250
+ ),
2251
+ ("macos", "x86_64", True): (
2252
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-apple-darwin-install_only.tar.gz",
2253
+ "4bc990b35384c83b5b0b3071e91455ec203517e569f29f691b159f1a6b2a19b2",
2254
+ ),
2255
+ ("windows", "x86_64", True): (
2256
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-pc-windows-msvc-install_only.tar.gz",
2257
+ "4e8e9ddda82062d6e111108ab72f439acac4ba41b77d694548ef5dbf6b2b3319",
2258
+ ),
2259
+ ("windows", "x86_64", False): (
2260
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
2261
+ "d75c18671e28ad698a32e589ca043b2cc0fff1cf7bae8f71501df68cd01e3a86",
2262
+ ),
2263
+ ("linux", "x86_64", False): (
2264
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
2265
+ "8675f055d1815dcbe5de94e7f4c84b0942ace527e4e1639b561f1672b517263f",
2266
+ ),
2267
+ ("linux", "x86_64", True): (
2268
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.8.19%2B20240726-x86_64-unknown-linux-gnu-install_only.tar.gz",
2269
+ "e81ea4dd16e6057c8121bdbcb7b64e2956068ca019f244c814bc3ad907cb2765",
2270
+ ),
2271
+ },
1972
2272
  PythonVersion("cpython", 3, 8, 18): {
1973
2273
  ("macos", "aarch64", False): (
1974
2274
  "https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
@@ -2651,6 +2951,32 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
2651
2951
  None,
2652
2952
  )
2653
2953
  },
2954
+ PythonVersion("pypy", 3, 10, 14): {
2955
+ ("linux", "aarch64", True): (
2956
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-aarch64.tar.bz2",
2957
+ "fc720999bc5050e1d3706b3b6445e695cf42bfc71ebc7c88ed6bb88828b1d385",
2958
+ ),
2959
+ ("linux", "x86", True): (
2960
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-linux32.tar.bz2",
2961
+ "0df48aa780159e879ac89a805d143e4a6cd1b842f98046f5a3f865814bfaa2a4",
2962
+ ),
2963
+ ("linux", "x86_64", True): (
2964
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-linux64.tar.bz2",
2965
+ "404e6180d6caf9258eaab0c02c72018e9aa8eb03ab9094a0ff17ee5e3b265ac1",
2966
+ ),
2967
+ ("macos", "x86_64", True): (
2968
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-macos_x86_64.tar.bz2",
2969
+ "490f2c6ba2489f405444f3b4ad42166da6e2eb73489a9535b206067eaaf21737",
2970
+ ),
2971
+ ("macos", "aarch64", True): (
2972
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-macos_arm64.tar.bz2",
2973
+ "6c003376667a95c7a228544649677b9927b8210d6444b901817aad24b8719b93",
2974
+ ),
2975
+ ("windows", "x86_64", True): (
2976
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-win64.zip",
2977
+ "e08415a2f35c6ecf2342b504bdfde11e4c5eca3fc5ef7fd2214ff064a5a54396",
2978
+ ),
2979
+ },
2654
2980
  PythonVersion("pypy", 3, 10, 13): {
2655
2981
  ("linux", "aarch64", True): (
2656
2982
  "https://downloads.python.org/pypy/pypy3.10-v7.3.15-aarch64.tar.bz2",
@@ -2703,6 +3029,32 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
2703
3029
  "8c3b1d34fb99100e230e94560410a38d450dc844effbee9ea183518e4aff595c",
2704
3030
  ),
2705
3031
  },
3032
+ PythonVersion("pypy", 3, 9, 19): {
3033
+ ("linux", "aarch64", True): (
3034
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2",
3035
+ "de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4",
3036
+ ),
3037
+ ("linux", "x86", True): (
3038
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2",
3039
+ "583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea",
3040
+ ),
3041
+ ("linux", "x86_64", True): (
3042
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux64.tar.bz2",
3043
+ "16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23",
3044
+ ),
3045
+ ("macos", "x86_64", True): (
3046
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_x86_64.tar.bz2",
3047
+ "fda015431621e7e5aa16359d114f2c45a77ed936992c1efff86302e768a6b21c",
3048
+ ),
3049
+ ("macos", "aarch64", True): (
3050
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_arm64.tar.bz2",
3051
+ "88f824e7a2d676440d09bc90fc959ae0fd3557d7e2f14bfbbe53d41d159a47fe",
3052
+ ),
3053
+ ("windows", "x86_64", True): (
3054
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-win64.zip",
3055
+ "06ec12a5e964dc0ad33e6f380185a4d295178dce6d6df512f508e7aee00a1323",
3056
+ ),
3057
+ },
2706
3058
  PythonVersion("pypy", 3, 9, 18): {
2707
3059
  ("linux", "aarch64", True): (
2708
3060
  "https://downloads.python.org/pypy/pypy3.9-v7.3.15-aarch64.tar.bz2",
File without changes