pbs-installer 2024.1.8__py3-none-any.whl → 2024.3.22__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/__init__.py +1 -4
- pbs_installer/_install.py +61 -34
- pbs_installer/_versions.py +82 -18
- {pbs_installer-2024.1.8.dist-info → pbs_installer-2024.3.22.dist-info}/METADATA +5 -3
- pbs_installer-2024.3.22.dist-info/RECORD +10 -0
- pbs_installer-2024.1.8.dist-info/RECORD +0 -10
- {pbs_installer-2024.1.8.dist-info → pbs_installer-2024.3.22.dist-info}/WHEEL +0 -0
- {pbs_installer-2024.1.8.dist-info → pbs_installer-2024.3.22.dist-info}/entry_points.txt +0 -0
- {pbs_installer-2024.1.8.dist-info → pbs_installer-2024.3.22.dist-info}/licenses/LICENSE +0 -0
pbs_installer/__init__.py
CHANGED
pbs_installer/_install.py
CHANGED
|
@@ -12,7 +12,7 @@ from ._utils import PythonVersion, get_arch_platform, unpack_tar
|
|
|
12
12
|
logger = logging.getLogger(__name__)
|
|
13
13
|
|
|
14
14
|
if TYPE_CHECKING:
|
|
15
|
-
import
|
|
15
|
+
import httpx
|
|
16
16
|
from _typeshed import StrPath
|
|
17
17
|
|
|
18
18
|
THIS_ARCH, THIS_PLATFORM = get_arch_platform()
|
|
@@ -33,10 +33,18 @@ def get_download_link(
|
|
|
33
33
|
) -> tuple[PythonVersion, str]:
|
|
34
34
|
"""Get the download URL matching the given requested version.
|
|
35
35
|
|
|
36
|
-
:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
Parameters:
|
|
37
|
+
request: The version of Python to install, e.g. 3.8,3.10.4
|
|
38
|
+
arch: The architecture to install, e.g. x86_64, arm64
|
|
39
|
+
platform: The platform to install, e.g. linux, macos
|
|
40
|
+
|
|
41
|
+
Returns:
|
|
42
|
+
A tuple of the PythonVersion and the download URL
|
|
43
|
+
|
|
44
|
+
Examples:
|
|
45
|
+
>>> get_download_link("3.10", "x86_64", "linux")
|
|
46
|
+
(PythonVersion(kind='cpython', major=3, minor=10, micro=13),
|
|
47
|
+
'https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst')
|
|
40
48
|
"""
|
|
41
49
|
from ._versions import PYTHON_VERSIONS
|
|
42
50
|
|
|
@@ -59,39 +67,44 @@ def get_download_link(
|
|
|
59
67
|
raise ValueError(f"Could not find a CPython {request!r} matching this system")
|
|
60
68
|
|
|
61
69
|
|
|
62
|
-
def _read_sha256(url: str,
|
|
63
|
-
resp =
|
|
64
|
-
if not resp.
|
|
70
|
+
def _read_sha256(url: str, client: httpx.Client) -> str | None:
|
|
71
|
+
resp = client.get(url + ".sha256", headers=_get_headers())
|
|
72
|
+
if not resp.is_success:
|
|
65
73
|
logger.warning("No checksum found for %s, this would be insecure", url)
|
|
66
74
|
return None
|
|
67
75
|
return resp.text.strip()
|
|
68
76
|
|
|
69
77
|
|
|
70
|
-
def download(url: str, destination: StrPath,
|
|
78
|
+
def download(url: str, destination: StrPath, client: httpx.Client | None = None) -> str:
|
|
71
79
|
"""Download the given url to the destination.
|
|
72
80
|
|
|
73
|
-
:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
:
|
|
81
|
+
Note: Extras required
|
|
82
|
+
`pbs-installer[download]` must be installed to use this function.
|
|
83
|
+
|
|
84
|
+
Parameters:
|
|
85
|
+
url: The url to download
|
|
86
|
+
destination: The file path to download to
|
|
87
|
+
client: A http.Client to use for downloading, or None to create a new one
|
|
88
|
+
|
|
89
|
+
Returns:
|
|
90
|
+
The original filename of the downloaded file
|
|
77
91
|
"""
|
|
78
92
|
logger.debug("Downloading url %s to %s", url, destination)
|
|
79
|
-
filename = unquote(url.rsplit("/")[-1])
|
|
80
93
|
try:
|
|
81
|
-
import
|
|
94
|
+
import httpx
|
|
82
95
|
except ModuleNotFoundError:
|
|
83
|
-
raise RuntimeError("You must install
|
|
96
|
+
raise RuntimeError("You must install httpx to use this function") from None
|
|
84
97
|
|
|
85
|
-
if
|
|
86
|
-
|
|
98
|
+
if client is None:
|
|
99
|
+
client = httpx.Client(trust_env=True, follow_redirects=True)
|
|
87
100
|
|
|
101
|
+
filename = unquote(url.rsplit("/")[-1])
|
|
88
102
|
hasher = hashlib.sha256()
|
|
89
|
-
checksum = _read_sha256(url,
|
|
103
|
+
checksum = _read_sha256(url, client)
|
|
90
104
|
|
|
91
|
-
with open(destination, "wb") as f:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
for chunk in response.iter_content(chunk_size=8192):
|
|
105
|
+
with open(destination, "wb") as f, client.stream("GET", url, headers=_get_headers()) as resp:
|
|
106
|
+
resp.raise_for_status()
|
|
107
|
+
for chunk in resp.iter_bytes(chunk_size=8192):
|
|
95
108
|
if checksum:
|
|
96
109
|
hasher.update(chunk)
|
|
97
110
|
f.write(chunk)
|
|
@@ -106,9 +119,13 @@ def install_file(
|
|
|
106
119
|
) -> None:
|
|
107
120
|
"""Unpack the downloaded file to the destination.
|
|
108
121
|
|
|
109
|
-
:
|
|
110
|
-
|
|
111
|
-
|
|
122
|
+
Note: Extras required
|
|
123
|
+
`pbs-installer[install]` must be installed to use this function.
|
|
124
|
+
|
|
125
|
+
Parameters:
|
|
126
|
+
filename: The file to unpack
|
|
127
|
+
destination: The directory to unpack to
|
|
128
|
+
original_filename: The original filename of the file, if it was renamed
|
|
112
129
|
"""
|
|
113
130
|
|
|
114
131
|
import tarfile
|
|
@@ -141,18 +158,28 @@ def install(
|
|
|
141
158
|
request: str,
|
|
142
159
|
destination: StrPath,
|
|
143
160
|
version_dir: bool = False,
|
|
144
|
-
|
|
161
|
+
client: httpx.Client | None = None,
|
|
145
162
|
arch: str | None = None,
|
|
146
163
|
platform: str | None = None,
|
|
147
164
|
) -> None:
|
|
148
165
|
"""Download and install the requested python version.
|
|
149
166
|
|
|
150
|
-
:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
:
|
|
154
|
-
|
|
155
|
-
|
|
167
|
+
Note: Extras required
|
|
168
|
+
`pbs-installer[all]` must be installed to use this function.
|
|
169
|
+
|
|
170
|
+
Parameters:
|
|
171
|
+
request: The version of Python to install, e.g. 3.8,3.10.4
|
|
172
|
+
destination: The directory to install to
|
|
173
|
+
version_dir: Whether to install to a subdirectory named with the python version
|
|
174
|
+
client: A httpx.Client to use for downloading
|
|
175
|
+
arch: The architecture to install, e.g. x86_64, arm64
|
|
176
|
+
platform: The platform to install, e.g. linux, macos
|
|
177
|
+
|
|
178
|
+
Examples:
|
|
179
|
+
>>> install("3.10", "./python")
|
|
180
|
+
Installing cpython@3.10.4 to ./python
|
|
181
|
+
>>> install("3.10", "./python", version_dir=True)
|
|
182
|
+
Installing cpython@3.10.4 to ./python/cpython@3.10.4
|
|
156
183
|
"""
|
|
157
184
|
ver, url = get_download_link(request, arch=arch, platform=platform)
|
|
158
185
|
if version_dir:
|
|
@@ -161,5 +188,5 @@ def install(
|
|
|
161
188
|
os.makedirs(destination, exist_ok=True)
|
|
162
189
|
with tempfile.NamedTemporaryFile() as tf:
|
|
163
190
|
tf.close()
|
|
164
|
-
original_filename = download(url, tf.name,
|
|
191
|
+
original_filename = download(url, tf.name, client)
|
|
165
192
|
install_file(tf.name, destination, original_filename)
|
pbs_installer/_versions.py
CHANGED
|
@@ -4,6 +4,38 @@ from __future__ import annotations
|
|
|
4
4
|
from ._utils import PythonVersion
|
|
5
5
|
|
|
6
6
|
PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
7
|
+
PythonVersion("cpython", 3, 12, 2): [
|
|
8
|
+
(
|
|
9
|
+
"arm64",
|
|
10
|
+
"darwin",
|
|
11
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
12
|
+
),
|
|
13
|
+
(
|
|
14
|
+
"arm64",
|
|
15
|
+
"linux",
|
|
16
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
17
|
+
),
|
|
18
|
+
(
|
|
19
|
+
"i686",
|
|
20
|
+
"windows",
|
|
21
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
22
|
+
),
|
|
23
|
+
(
|
|
24
|
+
"x86_64",
|
|
25
|
+
"darwin",
|
|
26
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
27
|
+
),
|
|
28
|
+
(
|
|
29
|
+
"x86_64",
|
|
30
|
+
"linux",
|
|
31
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
32
|
+
),
|
|
33
|
+
(
|
|
34
|
+
"x86_64",
|
|
35
|
+
"windows",
|
|
36
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2%2B20240224-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
37
|
+
),
|
|
38
|
+
],
|
|
7
39
|
PythonVersion("cpython", 3, 12, 1): [
|
|
8
40
|
(
|
|
9
41
|
"arm64",
|
|
@@ -68,6 +100,38 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
68
100
|
"https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
69
101
|
),
|
|
70
102
|
],
|
|
103
|
+
PythonVersion("cpython", 3, 11, 8): [
|
|
104
|
+
(
|
|
105
|
+
"arm64",
|
|
106
|
+
"darwin",
|
|
107
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
108
|
+
),
|
|
109
|
+
(
|
|
110
|
+
"arm64",
|
|
111
|
+
"linux",
|
|
112
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
113
|
+
),
|
|
114
|
+
(
|
|
115
|
+
"i686",
|
|
116
|
+
"windows",
|
|
117
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
118
|
+
),
|
|
119
|
+
(
|
|
120
|
+
"x86_64",
|
|
121
|
+
"darwin",
|
|
122
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
123
|
+
),
|
|
124
|
+
(
|
|
125
|
+
"x86_64",
|
|
126
|
+
"linux",
|
|
127
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
128
|
+
),
|
|
129
|
+
(
|
|
130
|
+
"x86_64",
|
|
131
|
+
"windows",
|
|
132
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8%2B20240224-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
133
|
+
),
|
|
134
|
+
],
|
|
71
135
|
PythonVersion("cpython", 3, 11, 7): [
|
|
72
136
|
(
|
|
73
137
|
"arm64",
|
|
@@ -284,12 +348,12 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
284
348
|
(
|
|
285
349
|
"arm64",
|
|
286
350
|
"darwin",
|
|
287
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
351
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
288
352
|
),
|
|
289
353
|
(
|
|
290
354
|
"arm64",
|
|
291
355
|
"linux",
|
|
292
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
356
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
293
357
|
),
|
|
294
358
|
(
|
|
295
359
|
"i686",
|
|
@@ -299,22 +363,22 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
299
363
|
(
|
|
300
364
|
"i686",
|
|
301
365
|
"windows",
|
|
302
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
366
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
303
367
|
),
|
|
304
368
|
(
|
|
305
369
|
"x86_64",
|
|
306
370
|
"darwin",
|
|
307
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
371
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
308
372
|
),
|
|
309
373
|
(
|
|
310
374
|
"x86_64",
|
|
311
375
|
"linux",
|
|
312
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
376
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
313
377
|
),
|
|
314
378
|
(
|
|
315
379
|
"x86_64",
|
|
316
380
|
"windows",
|
|
317
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
381
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13%2B20240224-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
318
382
|
),
|
|
319
383
|
],
|
|
320
384
|
PythonVersion("cpython", 3, 10, 12): [
|
|
@@ -728,12 +792,12 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
728
792
|
(
|
|
729
793
|
"arm64",
|
|
730
794
|
"darwin",
|
|
731
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
795
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
732
796
|
),
|
|
733
797
|
(
|
|
734
798
|
"arm64",
|
|
735
799
|
"linux",
|
|
736
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
800
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
737
801
|
),
|
|
738
802
|
(
|
|
739
803
|
"i686",
|
|
@@ -743,22 +807,22 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
743
807
|
(
|
|
744
808
|
"i686",
|
|
745
809
|
"windows",
|
|
746
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
810
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
747
811
|
),
|
|
748
812
|
(
|
|
749
813
|
"x86_64",
|
|
750
814
|
"darwin",
|
|
751
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
815
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
752
816
|
),
|
|
753
817
|
(
|
|
754
818
|
"x86_64",
|
|
755
819
|
"linux",
|
|
756
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
820
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
757
821
|
),
|
|
758
822
|
(
|
|
759
823
|
"x86_64",
|
|
760
824
|
"windows",
|
|
761
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
825
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.9.18%2B20240224-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
762
826
|
),
|
|
763
827
|
],
|
|
764
828
|
PythonVersion("cpython", 3, 9, 17): [
|
|
@@ -1302,32 +1366,32 @@ PYTHON_VERSIONS: dict[PythonVersion, list[tuple[str, str, str]]] = {
|
|
|
1302
1366
|
(
|
|
1303
1367
|
"arm64",
|
|
1304
1368
|
"darwin",
|
|
1305
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1369
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-aarch64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
1306
1370
|
),
|
|
1307
1371
|
(
|
|
1308
1372
|
"arm64",
|
|
1309
1373
|
"linux",
|
|
1310
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1374
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-aarch64-unknown-linux-gnu-lto-full.tar.zst",
|
|
1311
1375
|
),
|
|
1312
1376
|
(
|
|
1313
1377
|
"i686",
|
|
1314
1378
|
"windows",
|
|
1315
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1379
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-i686-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
1316
1380
|
),
|
|
1317
1381
|
(
|
|
1318
1382
|
"x86_64",
|
|
1319
1383
|
"darwin",
|
|
1320
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1384
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-x86_64-apple-darwin-pgo%2Blto-full.tar.zst",
|
|
1321
1385
|
),
|
|
1322
1386
|
(
|
|
1323
1387
|
"x86_64",
|
|
1324
1388
|
"linux",
|
|
1325
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1389
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst",
|
|
1326
1390
|
),
|
|
1327
1391
|
(
|
|
1328
1392
|
"x86_64",
|
|
1329
1393
|
"windows",
|
|
1330
|
-
"https://github.com/indygreg/python-build-standalone/releases/download/
|
|
1394
|
+
"https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.8.18%2B20240224-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst",
|
|
1331
1395
|
),
|
|
1332
1396
|
],
|
|
1333
1397
|
PythonVersion("cpython", 3, 8, 17): [
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pbs-installer
|
|
3
|
-
Version: 2024.
|
|
3
|
+
Version: 2024.3.22
|
|
4
4
|
Summary: Installer for Python Build Standalone
|
|
5
5
|
Author-Email: Frost Ming <me@frostming.com>
|
|
6
6
|
License: MIT
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
8
|
Provides-Extra: download
|
|
9
9
|
Provides-Extra: install
|
|
10
10
|
Provides-Extra: all
|
|
11
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: httpx<1,>=0.27.0; extra == "download"
|
|
12
12
|
Requires-Dist: zstandard>=0.21.0; extra == "install"
|
|
13
13
|
Requires-Dist: pbs-installer[download,install]; extra == "all"
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
@@ -20,3 +20,5 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
An installer for @indygreg's [python-build-standalone](https://github.com/indygreg/python-build-standalone)
|
|
21
21
|
|
|
22
22
|
The list of python versions are kept sync with the upstream automatically, via a periodically GitHub Action.
|
|
23
|
+
|
|
24
|
+
[📖 Read the docs](http://pbs-installer.readthedocs.io/)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
pbs_installer-2024.3.22.dist-info/METADATA,sha256=D2pNIYRdLtuLLicdxcnzUmBgDuk7QJLK0Uv-BJ0zpnc,858
|
|
2
|
+
pbs_installer-2024.3.22.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
|
|
3
|
+
pbs_installer-2024.3.22.dist-info/entry_points.txt,sha256=Nh2-16odxSoBayKBj8DeTkZF8M85z9fBNbt7aMBwg9g,61
|
|
4
|
+
pbs_installer-2024.3.22.dist-info/licenses/LICENSE,sha256=YzzZaluc5ZidgI5_WA4sOxgJILSj5WT52GicTGOZ1j0,1059
|
|
5
|
+
pbs_installer/__init__.py,sha256=n6uRFyP64YgQglqkPDsrXlhcSgY58WhYGyAj0gvNU0M,243
|
|
6
|
+
pbs_installer/__main__.py,sha256=ZNgzcjmFdyGQUMJ0BUiQKKYhlXcj8yRmWwSfR_yC4kQ,2573
|
|
7
|
+
pbs_installer/_install.py,sha256=9H7UwQyxR49ySsPdhX7_YDNgCSb31T6Qxb-CIY-lmcc,6276
|
|
8
|
+
pbs_installer/_utils.py,sha256=TQrjTW5ZSUEjDmEMs1P1hvEHyxQ_99DVhY0KHoF1wn8,1966
|
|
9
|
+
pbs_installer/_versions.py,sha256=s3jvhUnW4WYHwpB3bF0AE1cp7w_aJY_5qAPPqUqdZKM,86876
|
|
10
|
+
pbs_installer-2024.3.22.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
pbs_installer-2024.1.8.dist-info/METADATA,sha256=1EYEctdUa_CZ-VRTTqukKCX87LWpf8tvorWahuE7u5A,797
|
|
2
|
-
pbs_installer-2024.1.8.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
|
|
3
|
-
pbs_installer-2024.1.8.dist-info/entry_points.txt,sha256=Nh2-16odxSoBayKBj8DeTkZF8M85z9fBNbt7aMBwg9g,61
|
|
4
|
-
pbs_installer-2024.1.8.dist-info/licenses/LICENSE,sha256=YzzZaluc5ZidgI5_WA4sOxgJILSj5WT52GicTGOZ1j0,1059
|
|
5
|
-
pbs_installer/__init__.py,sha256=ErMesYa9pZbQ5TtSdTEwz9Xy7A-HBEvFRBoGjsSon-s,275
|
|
6
|
-
pbs_installer/__main__.py,sha256=ZNgzcjmFdyGQUMJ0BUiQKKYhlXcj8yRmWwSfR_yC4kQ,2573
|
|
7
|
-
pbs_installer/_install.py,sha256=48Z3-wHRIkGEYtMnFDVfU3EoASoPq4ARFujDqtgrYLM,5433
|
|
8
|
-
pbs_installer/_utils.py,sha256=TQrjTW5ZSUEjDmEMs1P1hvEHyxQ_99DVhY0KHoF1wn8,1966
|
|
9
|
-
pbs_installer/_versions.py,sha256=lhNOalBsymu2X2AHjHHi8QO3KRnlh1BYCdHAf2iX1cY,84026
|
|
10
|
-
pbs_installer-2024.1.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|