hmd-cli-python 0.2.78__py3-none-any.whl → 0.2.91__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.
@@ -165,9 +165,13 @@ def login(
165
165
  pip_config = configparser.ConfigParser()
166
166
  pip_config.read(pip_conf_name)
167
167
 
168
- extra_urls = pip_config["global"]["extra-index-url"]
169
- if not isinstance(extra_urls, list):
170
- extra_urls = extra_urls.split("\n")
168
+ extra_urls = []
169
+ if "global" in pip_config:
170
+ extra_urls = pip_config.get("global", {}).get("extra-index-url", "")
171
+ if not isinstance(extra_urls, list):
172
+ extra_urls = extra_urls.split("\n")
173
+ else:
174
+ pip_config["global"] = {}
171
175
 
172
176
  existing_urls = list(
173
177
  filter(lambda u: urlparse(u.strip()).hostname not in registry_urls, extra_urls)
@@ -1,31 +1,33 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hmd-cli-python
3
- Version: 0.2.78
3
+ Version: 0.2.91
4
4
  Summary: Implementation for python cli command
5
5
  Home-page: UNKNOWN
6
6
  Author: Jim Majure
7
7
  Author-email: jim.majure@hmdlabs.io
8
8
  License: Apache 2.0
9
9
  Platform: UNKNOWN
10
- Requires-Dist: attrs (==21.4.0)
10
+ Requires-Dist: attrs (==24.2.0)
11
11
  Requires-Dist: aws-secretsmanager-caching (==1.1.1.5)
12
12
  Requires-Dist: bleach (==4.1.0)
13
13
  Requires-Dist: boto3 (==1.21.7)
14
14
  Requires-Dist: botocore (==1.24.9)
15
+ Requires-Dist: build (==1.2.2.post1)
15
16
  Requires-Dist: cachetools (==5.2.0)
16
17
  Requires-Dist: cement (==3.0.6)
17
18
  Requires-Dist: certifi (==2022.12.7)
18
19
  Requires-Dist: cffi (==1.15.0)
19
20
  Requires-Dist: charset-normalizer (==2.0.12)
21
+ Requires-Dist: click (==8.0.4)
20
22
  Requires-Dist: colorlog (==6.6.0)
21
23
  Requires-Dist: coverage[toml] (==6.3.2)
22
24
  Requires-Dist: cryptography (==39.0.1)
23
25
  Requires-Dist: docutils (==0.18.1)
24
26
  Requires-Dist: google-auth (==2.9.1)
25
- Requires-Dist: hmd-cli-app (~=1.1.600)
26
- Requires-Dist: hmd-cli-tools (~=1.1.230)
27
+ Requires-Dist: hmd-cli-app (~=1.1.602)
28
+ Requires-Dist: hmd-cli-tools (~=1.1.232)
27
29
  Requires-Dist: idna (==3.3)
28
- Requires-Dist: importlib-metadata (==4.11.2)
30
+ Requires-Dist: importlib-metadata (==8.4.0)
29
31
  Requires-Dist: iniconfig (==1.1.1)
30
32
  Requires-Dist: inquirerpy (==0.3.4)
31
33
  Requires-Dist: jeepney (==0.8.0)
@@ -34,11 +36,13 @@ Requires-Dist: jmespath (==0.10.0)
34
36
  Requires-Dist: keyring (==23.5.0)
35
37
  Requires-Dist: kubernetes (==24.2.0)
36
38
  Requires-Dist: markdown-it-py (==2.2.0)
37
- Requires-Dist: markupsafe (==2.1.0)
39
+ Requires-Dist: markupsafe (==3.0.2)
38
40
  Requires-Dist: mdurl (==0.1.2)
39
41
  Requires-Dist: oauthlib (==3.2.2)
40
- Requires-Dist: packaging (==24.0)
42
+ Requires-Dist: packaging (==24.1)
41
43
  Requires-Dist: pfzy (==0.3.4)
44
+ Requires-Dist: pip-compile-multi (==2.6.3)
45
+ Requires-Dist: pip-tools (==7.4.1)
42
46
  Requires-Dist: pkginfo (==1.8.2)
43
47
  Requires-Dist: pluggy (==1.0.0)
44
48
  Requires-Dist: prompt-toolkit (==3.0.38)
@@ -48,13 +52,14 @@ Requires-Dist: pyasn1-modules (==0.2.8)
48
52
  Requires-Dist: pycparser (==2.21)
49
53
  Requires-Dist: pygments (==2.14.0)
50
54
  Requires-Dist: pyopenssl (==23.0.0)
55
+ Requires-Dist: pyproject-hooks (==1.2.0)
51
56
  Requires-Dist: pytest (==7.0.1)
52
57
  Requires-Dist: pytest-cov (==3.0.0)
53
58
  Requires-Dist: python-dateutil (==2.8.2)
54
59
  Requires-Dist: python-dotenv (==0.19.2)
55
- Requires-Dist: pyyaml (==6.0)
60
+ Requires-Dist: pyyaml (==6.0.1)
56
61
  Requires-Dist: readme-renderer (==37.3)
57
- Requires-Dist: requests (==2.28.2)
62
+ Requires-Dist: requests (==2.32.3)
58
63
  Requires-Dist: requests-oauthlib (==1.3.1)
59
64
  Requires-Dist: requests-toolbelt (==0.9.1)
60
65
  Requires-Dist: rfc3986 (==2.0.0)
@@ -64,7 +69,8 @@ Requires-Dist: s3transfer (==0.5.2)
64
69
  Requires-Dist: secretstorage (==3.3.3)
65
70
  Requires-Dist: six (==1.16.0)
66
71
  Requires-Dist: tomli (==2.0.1)
67
- Requires-Dist: twine (==4.0.2)
72
+ Requires-Dist: toposort (==1.10)
73
+ Requires-Dist: twine (==5.1.1)
68
74
  Requires-Dist: urllib3 (==1.26.8)
69
75
  Requires-Dist: wcwidth (==0.2.6)
70
76
  Requires-Dist: webencodings (==0.5.1)
@@ -0,0 +1,7 @@
1
+ hmd_cli_python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ hmd_cli_python/controller.py,sha256=GOi6QDDC0d42eG6ohwWifCYlgkFzoFzIwzjPrW1jqiM,3675
3
+ hmd_cli_python/hmd_cli_python.py,sha256=0kwet8BIjghMcFvvxg-MZwIKEmjQl7v6WAxf1iusAIM,9288
4
+ hmd_cli_python-0.2.91.dist-info/METADATA,sha256=VxpA0pT1LdkotxfVlzVGCdrOorCBkbzaumI3KOjkLMU,2720
5
+ hmd_cli_python-0.2.91.dist-info/WHEEL,sha256=Ni9JGQXk2T4q02tFVwTZ-iAb8m9R1cjnSLMaE4VH1rg,92
6
+ hmd_cli_python-0.2.91.dist-info/top_level.txt,sha256=i2ZCGVJeOkzYWeWmczts0Y8Yv2QsTWcueX0_qWGbs7M,15
7
+ hmd_cli_python-0.2.91.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- hmd_cli_python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- hmd_cli_python/controller.py,sha256=GOi6QDDC0d42eG6ohwWifCYlgkFzoFzIwzjPrW1jqiM,3675
3
- hmd_cli_python/hmd_cli_python.py,sha256=Mv9W4V_AQI55H-B3ILlhyEc1WM3n2eGDuyGCKo7OoAw,9165
4
- hmd_cli_python-0.2.78.dist-info/METADATA,sha256=Jsq676dwGK3vtv0TrEevgmr_5RC1OQ0akGaJ_FL9q8E,2499
5
- hmd_cli_python-0.2.78.dist-info/WHEEL,sha256=Ni9JGQXk2T4q02tFVwTZ-iAb8m9R1cjnSLMaE4VH1rg,92
6
- hmd_cli_python-0.2.78.dist-info/top_level.txt,sha256=i2ZCGVJeOkzYWeWmczts0Y8Yv2QsTWcueX0_qWGbs7M,15
7
- hmd_cli_python-0.2.78.dist-info/RECORD,,