pystand 2.10__tar.gz → 2.11__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.10/pystand.egg-info → pystand-2.11}/PKG-INFO +2 -2
- {pystand-2.10 → pystand-2.11}/README.md +1 -1
- {pystand-2.10 → pystand-2.11/pystand.egg-info}/PKG-INFO +2 -2
- {pystand-2.10 → pystand-2.11}/pystand.py +20 -23
- {pystand-2.10 → pystand-2.11}/.flake8 +0 -0
- {pystand-2.10 → pystand-2.11}/.gitignore +0 -0
- {pystand-2.10 → pystand-2.11}/Makefile +0 -0
- {pystand-2.10 → pystand-2.11}/pyproject.toml +0 -0
- {pystand-2.10 → pystand-2.11}/pystand.egg-info/SOURCES.txt +0 -0
- {pystand-2.10 → pystand-2.11}/pystand.egg-info/dependency_links.txt +0 -0
- {pystand-2.10 → pystand-2.11}/pystand.egg-info/entry_points.txt +0 -0
- {pystand-2.10 → pystand-2.11}/pystand.egg-info/requires.txt +0 -0
- {pystand-2.10 → pystand-2.11}/pystand.egg-info/top_level.txt +0 -0
- {pystand-2.10 → pystand-2.11}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pystand
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.11
|
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
|
@@ -142,7 +142,7 @@ options:
|
|
142
142
|
-D DISTRIBUTION, --distribution DISTRIBUTION
|
143
143
|
python-build-standalone distribution. Default is
|
144
144
|
"x86_64_v3-unknown-linux-gnu-install_only_stripped for
|
145
|
-
this host
|
145
|
+
this host
|
146
146
|
-P PREFIX_DIR, --prefix-dir PREFIX_DIR
|
147
147
|
specify prefix dir for storing versions. Default is
|
148
148
|
"$HOME/.local/share/pystand"
|
@@ -125,7 +125,7 @@ options:
|
|
125
125
|
-D DISTRIBUTION, --distribution DISTRIBUTION
|
126
126
|
python-build-standalone distribution. Default is
|
127
127
|
"x86_64_v3-unknown-linux-gnu-install_only_stripped for
|
128
|
-
this host
|
128
|
+
this host
|
129
129
|
-P PREFIX_DIR, --prefix-dir PREFIX_DIR
|
130
130
|
specify prefix dir for storing versions. Default is
|
131
131
|
"$HOME/.local/share/pystand"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pystand
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.11
|
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
|
@@ -142,7 +142,7 @@ options:
|
|
142
142
|
-D DISTRIBUTION, --distribution DISTRIBUTION
|
143
143
|
python-build-standalone distribution. Default is
|
144
144
|
"x86_64_v3-unknown-linux-gnu-install_only_stripped for
|
145
|
-
this host
|
145
|
+
this host
|
146
146
|
-P PREFIX_DIR, --prefix-dir PREFIX_DIR
|
147
147
|
specify prefix dir for storing versions. Default is
|
148
148
|
"$HOME/.local/share/pystand"
|
@@ -14,9 +14,9 @@ import shlex
|
|
14
14
|
import shutil
|
15
15
|
import sys
|
16
16
|
import time
|
17
|
-
from argparse import
|
17
|
+
from argparse import ArgumentParser, Namespace
|
18
18
|
from collections import defaultdict
|
19
|
-
from datetime import date, datetime
|
19
|
+
from datetime import date, datetime
|
20
20
|
from pathlib import Path
|
21
21
|
from typing import Any, Iterable, Iterator
|
22
22
|
|
@@ -27,7 +27,8 @@ from packaging.version import parse as parse_version
|
|
27
27
|
REPO = 'python-build-standalone'
|
28
28
|
GITHUB_REPO = f'astral-sh/{REPO}'
|
29
29
|
GITHUB_SITE = f'https://github.com/{GITHUB_REPO}'
|
30
|
-
|
30
|
+
LATEST_RELEASES = f'{GITHUB_SITE}/releases.atom'
|
31
|
+
LATEST_RELEASE_TAG = f'{GITHUB_SITE}/releases/latest'
|
31
32
|
|
32
33
|
# Sample release tag for documentation/usage examples
|
33
34
|
SAMPL_RELEASE = '20240415'
|
@@ -279,11 +280,11 @@ def check_release_tag(release: str) -> str | None:
|
|
279
280
|
# because it is much faster than using the GitHub API, and has no
|
280
281
|
# rate-limits.
|
281
282
|
def fetch_tags() -> Iterator[tuple[str, str]]:
|
282
|
-
'Fetch the latest release
|
283
|
+
'Fetch the latest release tags from the GitHub release atom feed'
|
283
284
|
import xml.etree.ElementTree as et
|
284
285
|
from urllib.request import urlopen
|
285
286
|
try:
|
286
|
-
with urlopen(
|
287
|
+
with urlopen(LATEST_RELEASES) as url:
|
287
288
|
data = et.parse(url).getroot()
|
288
289
|
except Exception:
|
289
290
|
sys.exit('Failed to fetch latest YYYYMMDD release atom file.')
|
@@ -295,14 +296,16 @@ def fetch_tags() -> Iterator[tuple[str, str]]:
|
|
295
296
|
if tl and dt:
|
296
297
|
yield tl, dt
|
297
298
|
|
298
|
-
def fetch_tag_latest(
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
299
|
+
def fetch_tag_latest() -> str:
|
300
|
+
'Fetch the latest release tag from the GitHub'
|
301
|
+
from urllib.request import urlopen
|
302
|
+
try:
|
303
|
+
with urlopen(LATEST_RELEASE_TAG) as url:
|
304
|
+
data = url.geturl()
|
305
|
+
except Exception:
|
306
|
+
sys.exit('Failed to fetch latest YYYYMMDD release tag.')
|
304
307
|
|
305
|
-
return ''
|
308
|
+
return data.split('/')[-1]
|
306
309
|
|
307
310
|
def get_release_tag(args: Namespace) -> str:
|
308
311
|
'Return the release tag, or latest if not specified'
|
@@ -317,7 +320,7 @@ def get_release_tag(args: Namespace) -> str:
|
|
317
320
|
if time.time() < (stat.st_mtime + int(args.cache_minutes * 60)):
|
318
321
|
return args._latest_release.read_text().strip()
|
319
322
|
|
320
|
-
if not (tag := fetch_tag_latest(
|
323
|
+
if not (tag := fetch_tag_latest()):
|
321
324
|
sys.exit('Latest YYYYMMDD release tag timestamp file is unavailable.')
|
322
325
|
|
323
326
|
args._latest_release.write_text(tag + '\n')
|
@@ -562,7 +565,7 @@ def main() -> str | None:
|
|
562
565
|
# Set up main/global arguments
|
563
566
|
opt.add_argument('-D', '--distribution',
|
564
567
|
help=f'{REPO} distribution. '
|
565
|
-
f'Default is "{distro_help} for this host
|
568
|
+
f'Default is "{distro_help} for this host')
|
566
569
|
opt.add_argument('-P', '--prefix-dir', default=prefix_dir,
|
567
570
|
help='specify prefix dir for storing '
|
568
571
|
'versions. Default is "%(default)s"')
|
@@ -584,8 +587,6 @@ def main() -> str | None:
|
|
584
587
|
help='do not strip downloaded binaries')
|
585
588
|
opt.add_argument('-V', '--version', action='store_true',
|
586
589
|
help=f'just show {PROG} version')
|
587
|
-
opt.add_argument('--min-release-hours', default=6, type=int,
|
588
|
-
help=SUPPRESS)
|
589
590
|
cmd = opt.add_subparsers(title='Commands', dest='cmdname')
|
590
591
|
|
591
592
|
# Add each command ..
|
@@ -654,7 +655,6 @@ def main() -> str | None:
|
|
654
655
|
args._releases = cache_dir / 'releases'
|
655
656
|
args._releases.mkdir(parents=True, exist_ok=True)
|
656
657
|
args._latest_release = cache_dir / 'latest_release'
|
657
|
-
args._min_release_time = timedelta(hours=args.min_release_hours)
|
658
658
|
|
659
659
|
result = args.func(args)
|
660
660
|
purge_unused_releases(args)
|
@@ -901,16 +901,13 @@ class _show(COMMAND):
|
|
901
901
|
args.parser.error('Can not specify --all with --list.')
|
902
902
|
|
903
903
|
if args.list:
|
904
|
-
now = datetime.now().astimezone()
|
905
904
|
for title, datestr in fetch_tags():
|
906
905
|
if args.re_match and not re.search(args.re_match, title):
|
907
906
|
continue
|
908
907
|
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
else:
|
913
|
-
print(title)
|
908
|
+
dts = datetime.fromisoformat(datestr).astimezone().isoformat(
|
909
|
+
sep='_', timespec='minutes')
|
910
|
+
print(title, dts)
|
914
911
|
|
915
912
|
return
|
916
913
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|