pbs-installer 2024.4.1__py3-none-any.whl → 2024.4.24__py3-none-any.whl

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/__main__.py CHANGED
@@ -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")
pbs_installer/_install.py CHANGED
@@ -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,57 @@
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, 3): {
7
+ ("macos", "aarch64", False): (
8
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
9
+ "fa2b8c377f17dfb097a93c0fba217d93075a7ceba0cc877066e95be969e6b73d",
10
+ ),
11
+ ("macos", "aarch64", True): (
12
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
13
+ "ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e",
14
+ ),
15
+ ("linux", "aarch64", False): (
16
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
17
+ "a4f17d1e3b4ea0e4c2a3664f232c0857979522936af582f7de92b57050220f74",
18
+ ),
19
+ ("linux", "aarch64", True): (
20
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
21
+ "ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d",
22
+ ),
23
+ ("windows", "x86", True): (
24
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
25
+ "bd723ad1aa05551627715a428660250f0e74db0f1421b03f399235772057ef55",
26
+ ),
27
+ ("windows", "x86", False): (
28
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
29
+ "31bb3f579f3dcbbf3bf1dc71a188112e821cdfc77d21c9dbfe82ea78538110e1",
30
+ ),
31
+ ("macos", "x86_64", False): (
32
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
33
+ "e49da3f702da08a3e38d01c776cc2356e427217681964ff64a7880507e224a3c",
34
+ ),
35
+ ("macos", "x86_64", True): (
36
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
37
+ "c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8",
38
+ ),
39
+ ("windows", "x86_64", True): (
40
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
41
+ "f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279",
42
+ ),
43
+ ("windows", "x86_64", False): (
44
+ "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",
45
+ "776568c92c5f3b47dbf5f17c1c58578f70d75a32654419a158aa8bdc6f95b09a",
46
+ ),
47
+ ("linux", "x86_64", False): (
48
+ "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",
49
+ "e51f6676a24c3551657347ef97963164eac801df0a62afcba8e0e28ebb62acee",
50
+ ),
51
+ ("linux", "x86_64", True): (
52
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
53
+ "a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6",
54
+ ),
55
+ },
6
56
  PythonVersion("cpython", 3, 12, 2): {
7
57
  ("macos", "aarch64", False): (
8
58
  "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 +203,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
153
203
  "e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9",
154
204
  ),
155
205
  },
206
+ PythonVersion("cpython", 3, 11, 9): {
207
+ ("macos", "aarch64", False): (
208
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
209
+ "9a59eb9e8e509e742a25cada7b2c1123a56022081d91a8fbe48015cf495b0d0f",
210
+ ),
211
+ ("macos", "aarch64", True): (
212
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
213
+ "7af7058f7c268b4d87ed7e08c2c7844ef8460863b3e679db3afdce8bb1eedfae",
214
+ ),
215
+ ("linux", "aarch64", False): (
216
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
217
+ "c9f5e493c686ed8a5c38d1748c45fed18dc9b6faa70794d9cc9bb32489cc0b77",
218
+ ),
219
+ ("linux", "aarch64", True): (
220
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
221
+ "b3a7199ac2615d75fb906e5ba556432efcf24baf8651fc70370d9f052d4069ee",
222
+ ),
223
+ ("windows", "x86", True): (
224
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
225
+ "b121267975dc2abfbdfcd60c55df2dcc2fb8e321ac07ae1a29f877cc111d3963",
226
+ ),
227
+ ("windows", "x86", False): (
228
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
229
+ "f0405bb7e19e4dbf7db290c224fc4aa333d3e16e0ed571f0794becac620fa26a",
230
+ ),
231
+ ("macos", "x86_64", False): (
232
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
233
+ "b1b156ceed6bc53c3c8816b3b5c3983d2c7070a8a42558b9c6dd730faec164e2",
234
+ ),
235
+ ("macos", "x86_64", True): (
236
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
237
+ "9afd734f63a23783cf0257bef25c9231ffc80e7747486dc54cf72f325213fd15",
238
+ ),
239
+ ("windows", "x86_64", True): (
240
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
241
+ "368474c69f476e7de4adaf50b61d9fcf6ec8b4db88cc43c5f71c860b3cd29c69",
242
+ ),
243
+ ("windows", "x86_64", False): (
244
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
245
+ "25344b08303f72ba2a37c33aa240fbd2c8d5a41bcce79cff63923b3d778c645c",
246
+ ),
247
+ ("linux", "x86_64", False): (
248
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
249
+ "1c5038da28a4379c065db85116594524010f30e653307c53bb9694e4e710d2c7",
250
+ ),
251
+ ("linux", "x86_64", True): (
252
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.11.9%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
253
+ "78b1c16a9fd032997ba92a60f46a64f795cd18ff335659dfdf6096df277b24d5",
254
+ ),
255
+ },
156
256
  PythonVersion("cpython", 3, 11, 8): {
157
257
  ("macos", "aarch64", False): (
158
258
  "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 +635,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
535
635
  "02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423",
536
636
  ),
537
637
  },
638
+ PythonVersion("cpython", 3, 10, 14): {
639
+ ("macos", "aarch64", False): (
640
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
641
+ "fa95c3a18e29234cf10c0befa2f08246307cab7f473ccc1804845be3caab076d",
642
+ ),
643
+ ("macos", "aarch64", True): (
644
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
645
+ "389da793b7666e9310908b4fe3ddcf0a20b55727fcb384c7c49b01bb21716f89",
646
+ ),
647
+ ("linux", "aarch64", False): (
648
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
649
+ "630bbbba148557bf670fbd65eb7fcd3c212cac45387d135c02799a13967d0f3d",
650
+ ),
651
+ ("linux", "aarch64", True): (
652
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
653
+ "2f9f26c430df19d6d2a25ac3f2a8e74106d32b9951b85f95218ceeb13d52e952",
654
+ ),
655
+ ("windows", "x86", True): (
656
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
657
+ "a71c6b00c167012d23c05ecba22222a560c0191ad21b46f32d89895037dad973",
658
+ ),
659
+ ("windows", "x86", False): (
660
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
661
+ "4fafd723944ae98611005caf0ad7dbb262e02c61ddfa7c45f0d097f0965839a8",
662
+ ),
663
+ ("macos", "x86_64", False): (
664
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
665
+ "cc3fa88159a50d639dff84af9ffe2a50d6eda41b51037c755b5a13b88ce50153",
666
+ ),
667
+ ("macos", "x86_64", True): (
668
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
669
+ "8e27ec6f27b3a27be892c7a9db1e278c858acd9d90c1114013fe5587cd6fc5e6",
670
+ ),
671
+ ("windows", "x86_64", True): (
672
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
673
+ "186b5632fb2fa5b5e6eee4110ce9bbb0349f52bb2163d2a1f5188b1d8eb1b5f3",
674
+ ),
675
+ ("windows", "x86_64", False): (
676
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
677
+ "abc3041f0de7e700229c0628dfcba7ba1d15c8b2924621add7baf1554a088768",
678
+ ),
679
+ ("linux", "x86_64", False): (
680
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
681
+ "add8cc6cbb4f2a3f8af2272e62b7604f7529a8c357c0af0f8a9f7d3dd444ef1e",
682
+ ),
683
+ ("linux", "x86_64", True): (
684
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.10.14%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
685
+ "c83c5485659250ef4e4fedb8e7f7b97bc99cc8cf5a1b11d0d1a98d347a43411d",
686
+ ),
687
+ },
538
688
  PythonVersion("cpython", 3, 10, 13): {
539
689
  ("macos", "aarch64", False): (
540
690
  "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 +1369,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
1219
1369
  None,
1220
1370
  ),
1221
1371
  },
1372
+ PythonVersion("cpython", 3, 9, 19): {
1373
+ ("macos", "aarch64", False): (
1374
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
1375
+ "04fd532cfba9b3184a94feaf689bd6147759f1d34ddd674e8b2c146b37a994b1",
1376
+ ),
1377
+ ("macos", "aarch64", True): (
1378
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
1379
+ "2671bb4ffd036f03076c8aa41e3828c4c16a602e93e2249a8e7b28fd83fdde51",
1380
+ ),
1381
+ ("linux", "aarch64", False): (
1382
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
1383
+ "c462b6f2ab7d87b1000972ff6c1e797c86a1306cceee02cdcc81cd2240f44d34",
1384
+ ),
1385
+ ("linux", "aarch64", True): (
1386
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
1387
+ "b18ad819f04c5b2cff6ffa95dd59263d00dcd6f5633d11e43685b4017469cb1c",
1388
+ ),
1389
+ ("windows", "x86", True): (
1390
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
1391
+ "683349c1d46ea0aebe5861dde2acdff0b7ea54fc37072a0d3f47d6164b802783",
1392
+ ),
1393
+ ("windows", "x86", False): (
1394
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
1395
+ "7e6edb16a3973fbb894f3cf4f60a34e22645e84621ec61c622cf4c5a2f4bf2a2",
1396
+ ),
1397
+ ("macos", "x86_64", False): (
1398
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
1399
+ "2bb4ed2fc03bb05ac6680b8c11d3c64f7a7dd24b80089c5ad85a91ea4a1795aa",
1400
+ ),
1401
+ ("macos", "x86_64", True): (
1402
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
1403
+ "627d903588c0e69ed8b941ba9f91e070e38105a627c5b8c730267744760dca84",
1404
+ ),
1405
+ ("windows", "x86_64", True): (
1406
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
1407
+ "9b46faee13e37d8bfa4c02de3775ca3d5dec9378697d755b750fd37788179286",
1408
+ ),
1409
+ ("windows", "x86_64", False): (
1410
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
1411
+ "e3611b5699c97bf5ac289e3636e8f932fb177997ee69a81b0c2b15c766ca6f13",
1412
+ ),
1413
+ ("linux", "x86_64", False): (
1414
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
1415
+ "e1a07336705b58215f8ea138f4abee4640b1baa018e84a9ed44d9a47c7bfa0c8",
1416
+ ),
1417
+ ("linux", "x86_64", True): (
1418
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.9.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
1419
+ "00f698873804863dedc0e2b2c2cc4303b49ab0703af2e5883e11340cb8079d0f",
1420
+ ),
1421
+ },
1222
1422
  PythonVersion("cpython", 3, 9, 18): {
1223
1423
  ("macos", "aarch64", False): (
1224
1424
  "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 +2169,56 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
1969
2169
  None,
1970
2170
  ),
1971
2171
  },
2172
+ PythonVersion("cpython", 3, 8, 19): {
2173
+ ("macos", "aarch64", False): (
2174
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
2175
+ "08cf698453d0a3080426a70dbb43220e915eb4401a9ea0fc798f9f27a3bf7f88",
2176
+ ),
2177
+ ("macos", "aarch64", True): (
2178
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-apple-darwin-install_only.tar.gz",
2179
+ "eae09ed83ee66353c0cee435ea2d3e4868bd0537214803fb256a1a2928710bc0",
2180
+ ),
2181
+ ("linux", "aarch64", False): (
2182
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-lto-full.tar.zst",
2183
+ "31415fdb0d8ea48f09d4a7e0e007f0dd77809be67f5e73ec803f6856d491c542",
2184
+ ),
2185
+ ("linux", "aarch64", True): (
2186
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-aarch64-unknown-linux-gnu-install_only.tar.gz",
2187
+ "5bde36c53a9a511a1618f159abed77264392eb054edeb57bb5740f6335db34a3",
2188
+ ),
2189
+ ("windows", "x86", True): (
2190
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-install_only.tar.gz",
2191
+ "43766b4ced11b3c4cb0acf60cbfe8e88c6d3d4540192c3fff1463cd131c7473f",
2192
+ ),
2193
+ ("windows", "x86", False): (
2194
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
2195
+ "d1776a6eecc3bcf549fdbd7adcc9a1ee6e0f0dfaa8ad77f055f5972882d0d227",
2196
+ ),
2197
+ ("macos", "x86_64", False): (
2198
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
2199
+ "e011239aec57e2074093a31f6fb3fee036671ab777fb9764e32bfdb869a80652",
2200
+ ),
2201
+ ("macos", "x86_64", True): (
2202
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-apple-darwin-install_only.tar.gz",
2203
+ "05f0c488d84f7590afb6f5d192f071df80584339dda581b6186effc6cd690f6b",
2204
+ ),
2205
+ ("windows", "x86_64", True): (
2206
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-install_only.tar.gz",
2207
+ "ee95c27e5d9de165e77c280ad4d7b51b0dab9567e7e233fc3acf72363870a168",
2208
+ ),
2209
+ ("windows", "x86_64", False): (
2210
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
2211
+ "ff0812147ab19101c219d0648cf0dbe22b3612decd6034c286451dafe5fe5134",
2212
+ ),
2213
+ ("linux", "x86_64", False): (
2214
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
2215
+ "778a2f806278f033c683b224aa595775c369717d477e0152b1293c9677ba9377",
2216
+ ),
2217
+ ("linux", "x86_64", True): (
2218
+ "https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.8.19%2B20240415-x86_64-unknown-linux-gnu-install_only.tar.gz",
2219
+ "b33feb5ce0d7f9c4aca8621a9d231dfd9d2f6e26eccb56b63f07041ff573d5a5",
2220
+ ),
2221
+ },
1972
2222
  PythonVersion("cpython", 3, 8, 18): {
1973
2223
  ("macos", "aarch64", False): (
1974
2224
  "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 +2901,32 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
2651
2901
  None,
2652
2902
  )
2653
2903
  },
2904
+ PythonVersion("pypy", 3, 10, 14): {
2905
+ ("linux", "aarch64", True): (
2906
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-aarch64.tar.bz2",
2907
+ "fc720999bc5050e1d3706b3b6445e695cf42bfc71ebc7c88ed6bb88828b1d385",
2908
+ ),
2909
+ ("linux", "x86", True): (
2910
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-linux32.tar.bz2",
2911
+ "0df48aa780159e879ac89a805d143e4a6cd1b842f98046f5a3f865814bfaa2a4",
2912
+ ),
2913
+ ("linux", "x86_64", True): (
2914
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-linux64.tar.bz2",
2915
+ "404e6180d6caf9258eaab0c02c72018e9aa8eb03ab9094a0ff17ee5e3b265ac1",
2916
+ ),
2917
+ ("macos", "x86_64", True): (
2918
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-macos_x86_64.tar.bz2",
2919
+ "490f2c6ba2489f405444f3b4ad42166da6e2eb73489a9535b206067eaaf21737",
2920
+ ),
2921
+ ("macos", "aarch64", True): (
2922
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-macos_arm64.tar.bz2",
2923
+ "6c003376667a95c7a228544649677b9927b8210d6444b901817aad24b8719b93",
2924
+ ),
2925
+ ("windows", "x86_64", True): (
2926
+ "https://downloads.python.org/pypy/pypy3.10-v7.3.16-win64.zip",
2927
+ "e08415a2f35c6ecf2342b504bdfde11e4c5eca3fc5ef7fd2214ff064a5a54396",
2928
+ ),
2929
+ },
2654
2930
  PythonVersion("pypy", 3, 10, 13): {
2655
2931
  ("linux", "aarch64", True): (
2656
2932
  "https://downloads.python.org/pypy/pypy3.10-v7.3.15-aarch64.tar.bz2",
@@ -2703,6 +2979,32 @@ PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str], tuple[str, str | None
2703
2979
  "8c3b1d34fb99100e230e94560410a38d450dc844effbee9ea183518e4aff595c",
2704
2980
  ),
2705
2981
  },
2982
+ PythonVersion("pypy", 3, 9, 19): {
2983
+ ("linux", "aarch64", True): (
2984
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2",
2985
+ "de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4",
2986
+ ),
2987
+ ("linux", "x86", True): (
2988
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2",
2989
+ "583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea",
2990
+ ),
2991
+ ("linux", "x86_64", True): (
2992
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux64.tar.bz2",
2993
+ "16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23",
2994
+ ),
2995
+ ("macos", "x86_64", True): (
2996
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_x86_64.tar.bz2",
2997
+ "fda015431621e7e5aa16359d114f2c45a77ed936992c1efff86302e768a6b21c",
2998
+ ),
2999
+ ("macos", "aarch64", True): (
3000
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_arm64.tar.bz2",
3001
+ "88f824e7a2d676440d09bc90fc959ae0fd3557d7e2f14bfbbe53d41d159a47fe",
3002
+ ),
3003
+ ("windows", "x86_64", True): (
3004
+ "https://downloads.python.org/pypy/pypy3.9-v7.3.16-win64.zip",
3005
+ "06ec12a5e964dc0ad33e6f380185a4d295178dce6d6df512f508e7aee00a1323",
3006
+ ),
3007
+ },
2706
3008
  PythonVersion("pypy", 3, 9, 18): {
2707
3009
  ("linux", "aarch64", True): (
2708
3010
  "https://downloads.python.org/pypy/pypy3.9-v7.3.15-aarch64.tar.bz2",
pbs_installer/py.typed ADDED
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pbs-installer
3
- Version: 2024.4.1
3
+ Version: 2024.4.24
4
4
  Summary: Installer for Python Build Standalone
5
5
  Author-Email: Frost Ming <me@frostming.com>
6
6
  License: MIT
@@ -0,0 +1,11 @@
1
+ pbs_installer-2024.4.24.dist-info/METADATA,sha256=aeVbkv9UZgivvROIsEyWvv-AqgJ3uot6b8gtSatq_IU,990
2
+ pbs_installer-2024.4.24.dist-info/WHEEL,sha256=vnE8JVcI2Wz7GRKorsPArnBdnW2SWKWGow5gu5tHlRU,90
3
+ pbs_installer-2024.4.24.dist-info/entry_points.txt,sha256=Nh2-16odxSoBayKBj8DeTkZF8M85z9fBNbt7aMBwg9g,61
4
+ pbs_installer-2024.4.24.dist-info/licenses/LICENSE,sha256=YzzZaluc5ZidgI5_WA4sOxgJILSj5WT52GicTGOZ1j0,1059
5
+ pbs_installer/__init__.py,sha256=n6uRFyP64YgQglqkPDsrXlhcSgY58WhYGyAj0gvNU0M,243
6
+ pbs_installer/__main__.py,sha256=dpfgtx6NZMVYUJyQi6w_KcfvHpOvQXfpeNYJjIvqZjI,2893
7
+ pbs_installer/_install.py,sha256=1-iLzI2n2meWbp0RGvQy-e74NFls6Y6kFu5OEgJVGeQ,6916
8
+ pbs_installer/_utils.py,sha256=KuN9g7niFqfaV8B185nIJBO-GbmKQUVFW0Ebl0HRnVk,3473
9
+ pbs_installer/_versions.py,sha256=x95WPGVKoKcdeoH3JBiX1y3GhJVHq5pyghRz-JVvxf0,219162
10
+ pbs_installer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pbs_installer-2024.4.24.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.1.8)
2
+ Generator: pdm-backend (2.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,10 +0,0 @@
1
- pbs_installer-2024.4.1.dist-info/METADATA,sha256=xFyIxICvVmo05UB5M2iwGurBPVHXN54XHvr946Rvs8Y,989
2
- pbs_installer-2024.4.1.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
3
- pbs_installer-2024.4.1.dist-info/entry_points.txt,sha256=Nh2-16odxSoBayKBj8DeTkZF8M85z9fBNbt7aMBwg9g,61
4
- pbs_installer-2024.4.1.dist-info/licenses/LICENSE,sha256=YzzZaluc5ZidgI5_WA4sOxgJILSj5WT52GicTGOZ1j0,1059
5
- pbs_installer/__init__.py,sha256=n6uRFyP64YgQglqkPDsrXlhcSgY58WhYGyAj0gvNU0M,243
6
- pbs_installer/__main__.py,sha256=Iyp0xPy73pNrlopC_60-b8e1PciVljf7zWZ9kMJDHB8,2877
7
- pbs_installer/_install.py,sha256=BnXJpV-UrJAEwIqfvq6iyxQj9DjSuLFalx9Fcqvtros,6754
8
- pbs_installer/_utils.py,sha256=KuN9g7niFqfaV8B185nIJBO-GbmKQUVFW0Ebl0HRnVk,3473
9
- pbs_installer/_versions.py,sha256=f8vmTpWlovJMGb_jrhfdAhZ2x_8lfBYR4xaZwUcabts,198713
10
- pbs_installer-2024.4.1.dist-info/RECORD,,