pystand 2.13.1__tar.gz → 2.14__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.
pystand-2.14/Makefile ADDED
@@ -0,0 +1,21 @@
1
+ PYFILES = $(wildcard *.py)
2
+ check:
3
+ ruff check $(PYFILES)
4
+ mypy $(PYFILES)
5
+ pyright $(PYFILES)
6
+
7
+ build:
8
+ rm -rf dist
9
+ uv build
10
+
11
+ upload: build
12
+ uv-publish
13
+
14
+ doc:
15
+ update-readme-usage -A
16
+
17
+ format:
18
+ ruff check --select I --fix $(PYFILES) && ruff format $(PYFILES)
19
+
20
+ clean:
21
+ @rm -vrf *.egg-info build/ dist/ __pycache__
@@ -1,9 +1,9 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pystand
3
- Version: 2.13.1
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: GPLv3
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
@@ -409,8 +409,6 @@ Note you can set a different default distribution by specifying
409
409
  The `show` command can be used to search for distributions as seen in the
410
410
  following examples.
411
411
 
412
- ```sh
413
-
414
412
  List all the versions installed on this system (at the default location):
415
413
 
416
414
  ```sh
@@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "pystand"
7
7
  description = "Install Python versions from python-build-standalone project"
8
8
  readme = "README.md"
9
+ license = "GPL-3.0-or-later"
9
10
  requires-python = ">=3.8"
10
11
  keywords = ["python-build-standalone", "pyenv", "hatch", "pdm"]
11
12
  classifiers = [
@@ -30,9 +31,6 @@ Homepage = "https://github.com/bulletmark/pystand"
30
31
  [project.scripts]
31
32
  pystand = "pystand:main"
32
33
 
33
- [project.license]
34
- text = "GPLv3"
35
-
36
34
  [tool.setuptools_scm]
37
35
  version_scheme = "post-release"
38
36
 
@@ -1,9 +1,9 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pystand
3
- Version: 2.13.1
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: GPLv3
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
@@ -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 UnknownObjectException:
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/Makefile DELETED
@@ -1,21 +0,0 @@
1
- check:
2
- ruff check *.py
3
- mypy *.py
4
- pyright *.py
5
- vermin -vv --no-tips -i *.py
6
-
7
- build:
8
- rm -rf dist
9
- python3 -m build --sdist --wheel
10
-
11
- upload: build
12
- uv-publish
13
-
14
- doc:
15
- update-readme-usage -A
16
-
17
- format:
18
- ruff format *.py
19
-
20
- clean:
21
- @rm -vrf *.egg-info build/ dist/ __pycache__
File without changes
File without changes