pystand 2.13.1__py3-none-any.whl → 2.14__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.13.1.dist-info → pystand-2.14.dist-info}/METADATA +3 -5
- pystand-2.14.dist-info/RECORD +6 -0
- {pystand-2.13.1.dist-info → pystand-2.14.dist-info}/WHEEL +1 -1
- pystand.py +2 -3
- pystand-2.13.1.dist-info/RECORD +0 -6
- {pystand-2.13.1.dist-info → pystand-2.14.dist-info}/entry_points.txt +0 -0
- {pystand-2.13.1.dist-info → pystand-2.14.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: pystand
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.14
|
4
4
|
Summary: Install Python versions from python-build-standalone project
|
5
5
|
Author-email: Mark Blakeney <mark.blakeney@bullet-systems.net>
|
6
|
-
License:
|
6
|
+
License-Expression: GPL-3.0-or-later
|
7
7
|
Project-URL: Homepage, https://github.com/bulletmark/pystand
|
8
8
|
Keywords: python-build-standalone,pyenv,hatch,pdm
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
@@ -426,8 +426,6 @@ Note you can set a different default distribution by specifying
|
|
426
426
|
The `show` command can be used to search for distributions as seen in the
|
427
427
|
following examples.
|
428
428
|
|
429
|
-
```sh
|
430
|
-
|
431
429
|
List all the versions installed on this system (at the default location):
|
432
430
|
|
433
431
|
```sh
|
@@ -0,0 +1,6 @@
|
|
1
|
+
pystand.py,sha256=gku268WNQw2VqYrjZa7R37k15a4Hkz5tBJ2_E75lBWw,36823
|
2
|
+
pystand-2.14.dist-info/METADATA,sha256=U5ybEsQsHJ5yn7M1mGtQg50RbOr6sjAhvQ3cMqTN0OU,24824
|
3
|
+
pystand-2.14.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
4
|
+
pystand-2.14.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
+
pystand-2.14.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
+
pystand-2.14.dist-info/RECORD,,
|
pystand.py
CHANGED
@@ -396,12 +396,11 @@ def get_release_files(args, tag, implementation: str | None = None) -> dict:
|
|
396
396
|
return {}
|
397
397
|
|
398
398
|
# Not in cache so fetch it (and also store in cache)
|
399
|
-
from github.GithubException import UnknownObjectException
|
400
|
-
|
401
399
|
gh = get_gh(args)
|
402
400
|
try:
|
403
401
|
release = gh.get_repo(GITHUB_REPO).get_release(tag)
|
404
|
-
except
|
402
|
+
except Exception as e:
|
403
|
+
print(f'Error: {str(e)}', file=sys.stderr)
|
405
404
|
return {}
|
406
405
|
|
407
406
|
# Iterate over the release assets and store pertinent files in a
|
pystand-2.13.1.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
pystand.py,sha256=I7VERu60r7H6iCUy5SJvFv5_fT36MeNrIEZUzsoq-RM,36843
|
2
|
-
pystand-2.13.1.dist-info/METADATA,sha256=LsY47B2HgxjzssPumImNJmjcex6-uq4q5Z_6y022KNo,24811
|
3
|
-
pystand-2.13.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
4
|
-
pystand-2.13.1.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
-
pystand-2.13.1.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
-
pystand-2.13.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|