pystand 2.8__py3-none-any.whl → 2.9__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.
- {pystand-2.8.dist-info → pystand-2.9.dist-info}/METADATA +11 -9
- pystand-2.9.dist-info/RECORD +6 -0
- pystand.py +2 -2
- pystand-2.8.dist-info/RECORD +0 -6
- {pystand-2.8.dist-info → pystand-2.9.dist-info}/WHEEL +0 -0
- {pystand-2.8.dist-info → pystand-2.9.dist-info}/entry_points.txt +0 -0
- {pystand-2.8.dist-info → pystand-2.9.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pystand
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.9
|
4
4
|
Summary: Install Python versions from python-build-standalone project
|
5
5
|
Author-email: Mark Blakeney <mark.blakeney@bullet-systems.net>
|
6
6
|
License: GPLv3
|
@@ -134,8 +134,8 @@ usage: pystand [-h] [-D DISTRIBUTION] [-P PREFIX_DIR] [-C CACHE_DIR]
|
|
134
134
|
{install,update,upgrade,remove,uninstall,list,show,path} ...
|
135
135
|
|
136
136
|
Command line tool to download, install, and update pre-built Python versions
|
137
|
-
from the python-build-standalone project at
|
138
|
-
|
137
|
+
from the python-build-standalone project at https://github.com/astral-
|
138
|
+
sh/python-build-standalone.
|
139
139
|
|
140
140
|
options:
|
141
141
|
-h, --help show this help message and exit
|
@@ -273,7 +273,8 @@ options:
|
|
273
273
|
usage: pystand show [-h] [-l | -r RELEASE] [-a] [re_match]
|
274
274
|
|
275
275
|
Show versions available from a release. View available releases and their
|
276
|
-
distributions at https://github.com/
|
276
|
+
distributions at https://github.com/astral-sh/python-build-
|
277
|
+
standalone/releases.
|
277
278
|
|
278
279
|
positional arguments:
|
279
280
|
re_match show only versions+distributions matching this regular
|
@@ -555,9 +556,10 @@ install many different versions particularly across various releases,
|
|
555
556
|
you may get rate limited by Github so the command can block and you will
|
556
557
|
see "backoff" messages reported. You can create a Github access token to
|
557
558
|
gain increased rate limits. Create a token in your Github account under
|
558
|
-
`Settings -> Developer settings -> Personal access tokens`.
|
559
|
-
|
560
|
-
|
559
|
+
`Settings -> Developer settings -> Personal access tokens`. You can use
|
560
|
+
either a Github "fine-grained" or "classic" token. Specify the token on
|
561
|
+
the command line with `--github-access-token`, or set that as a [default
|
562
|
+
option](#command-default-options).
|
561
563
|
|
562
564
|
## Command Line Tab Completion
|
563
565
|
|
@@ -581,8 +583,8 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at
|
|
581
583
|
<http://www.gnu.org/licenses/> for more details.
|
582
584
|
|
583
585
|
[pystand]: https://github.com/bulletmark/pystand
|
584
|
-
[pbs]: https://github.com/
|
585
|
-
[pbs-rel]: https://github.com/
|
586
|
+
[pbs]: https://github.com/astral-sh/python-build-standalone
|
587
|
+
[pbs-rel]: https://github.com/astral-sh/python-build-standalone/releases
|
586
588
|
[pipx]: https://github.com/pypa/pipx
|
587
589
|
[pipxu]: https://github.com/bulletmark/pipxu
|
588
590
|
[uvtool]: https://docs.astral.sh/uv/guides/tools/#installing-tools
|
@@ -0,0 +1,6 @@
|
|
1
|
+
pystand.py,sha256=bvWRxN3JrIodS5p1pvBy6Lf2evbpACtNp6LPl3XO2xI,36294
|
2
|
+
pystand-2.9.dist-info/METADATA,sha256=y5bHXt3xX-XT8Ow7dxQyYI2GhmUlM29V-Eawq7c3uqk,24843
|
3
|
+
pystand-2.9.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
4
|
+
pystand-2.9.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
+
pystand-2.9.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
+
pystand-2.9.dist-info/RECORD,,
|
pystand.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
'''
|
4
4
|
Command line tool to download, install, and update pre-built Python
|
5
5
|
versions from the python-build-standalone project at
|
6
|
-
https://github.com/
|
6
|
+
https://github.com/astral-sh/python-build-standalone.
|
7
7
|
'''
|
8
8
|
from __future__ import annotations
|
9
9
|
|
@@ -32,7 +32,7 @@ import zstandard
|
|
32
32
|
from packaging.version import parse as parse_version
|
33
33
|
|
34
34
|
REPO = 'python-build-standalone'
|
35
|
-
GITHUB_REPO = f'
|
35
|
+
GITHUB_REPO = f'astral-sh/{REPO}'
|
36
36
|
GITHUB_SITE = f'https://github.com/{GITHUB_REPO}'
|
37
37
|
LATEST_RELEASE = f'{GITHUB_SITE}/releases.atom'
|
38
38
|
|
pystand-2.8.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
pystand.py,sha256=g4gecuHyKZuaeJU2eit38KXp7Oz7xVomSBjYJ8TrvAw,36292
|
2
|
-
pystand-2.8.dist-info/METADATA,sha256=68VwJgo9pXhBxyffYSP0qcrbmVpM4wWXwudE7i7EV9U,24774
|
3
|
-
pystand-2.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
4
|
-
pystand-2.8.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
-
pystand-2.8.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
-
pystand-2.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|