pystand 2.5__py3-none-any.whl → 2.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pystand
3
- Version: 2.5
3
+ Version: 2.6
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
@@ -272,7 +272,8 @@ options:
272
272
  ```
273
273
  usage: pystand show [-h] [-r RELEASE] [-a] [re_match]
274
274
 
275
- Show versions available from a release.
275
+ Show versions available from a release. View available releases and their
276
+ distributions at https://github.com/indygreg/python-build-standalone/releases.
276
277
 
277
278
  positional arguments:
278
279
  re_match show only versions+distributions matching this regular
@@ -0,0 +1,6 @@
1
+ pystand.py,sha256=dYDDeqM3pNPeurMpilFJyCVuIErvMDBZZdH3hs2uj54,34548
2
+ pystand-2.6.dist-info/METADATA,sha256=qsQOtbkY7hOhwHlwyP-rvZvAGm9e53EKF-kewHg5MWw,24713
3
+ pystand-2.6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
4
+ pystand-2.6.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
5
+ pystand-2.6.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
6
+ pystand-2.6.dist-info/RECORD,,
pystand.py CHANGED
@@ -44,14 +44,14 @@ CNFFILE = platformdirs.user_config_path(f'{PROG}-flags.conf')
44
44
 
45
45
  # Default distributions for various platforms
46
46
  DISTRIBUTIONS = {
47
- ('Linux', 'x86_64'): 'x86_64-unknown-linux-gnu-install_only_stripped',
47
+ ('Linux', 'x86_64'): 'x86_64_v3-unknown-linux-gnu-install_only_stripped',
48
48
  ('Linux', 'aarch64'): 'aarch64-unknown-linux-gnu-install_only_stripped',
49
49
  ('Linux', 'armv7l'): 'armv7-unknown-linux-gnueabihf-install_only_stripped',
50
50
  ('Linux', 'armv8l'): 'armv7-unknown-linux-gnueabihf-install_only_stripped',
51
51
  ('Darwin', 'x86_64'): 'x86_64-apple-darwin-install_only_stripped',
52
52
  ('Darwin', 'aarch64'): 'aarch64-apple-darwin-install_only_stripped',
53
- ('Windows', 'x86_64'): 'x86_64-pc-windows-msvc-install_only_stripped',
54
- ('Windows', 'i686'): 'i686-pc-windows-msvc-install_only_stripped',
53
+ ('Windows', 'x86_64'): 'x86_64-pc-windows-msvc-shared-install_only_stripped',
54
+ ('Windows', 'i686'): 'i686-pc-windows-msvc-shared-install_only_stripped',
55
55
  }
56
56
 
57
57
  def is_admin() -> bool:
@@ -849,7 +849,12 @@ class _list(COMMAND):
849
849
 
850
850
  @COMMAND.add
851
851
  class _show(COMMAND):
852
- 'Show versions available from a release.'
852
+ '''
853
+ Show versions available from a release.
854
+
855
+ View available releases and their distributions at
856
+ https://github.com/indygreg/python-build-standalone/releases.
857
+ '''
853
858
  @staticmethod
854
859
  def init(parser: ArgumentParser) -> None:
855
860
  parser.add_argument('-r', '--release',
@@ -1,6 +0,0 @@
1
- pystand.py,sha256=sCo975wSImj3Pjlof0N_y5U8QkSsCmwvxlm0c_nhLUE,34395
2
- pystand-2.5.dist-info/METADATA,sha256=P6vRwztzgexP_2B_kYG_YQ7lsAHZH1n2klDXNaz6JBs,24600
3
- pystand-2.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
4
- pystand-2.5.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
5
- pystand-2.5.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
6
- pystand-2.5.dist-info/RECORD,,
File without changes