dcicutils 8.10.0.1b1__py3-none-any.whl → 8.10.0.1b2__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.
- dcicutils/command_utils.py +3 -2
- dcicutils/deployment_utils.py +2 -2
- dcicutils/ecr_scripts.py +4 -3
- dcicutils/env_scripts.py +5 -4
- dcicutils/progress_bar.py +1 -1
- dcicutils/scripts/publish_to_pypi.py +2 -1
- dcicutils/scripts/view_portal_object.py +7 -7
- {dcicutils-8.10.0.1b1.dist-info → dcicutils-8.10.0.1b2.dist-info}/METADATA +1 -1
- {dcicutils-8.10.0.1b1.dist-info → dcicutils-8.10.0.1b2.dist-info}/RECORD +12 -12
- {dcicutils-8.10.0.1b1.dist-info → dcicutils-8.10.0.1b2.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.10.0.1b1.dist-info → dcicutils-8.10.0.1b2.dist-info}/WHEEL +0 -0
- {dcicutils-8.10.0.1b1.dist-info → dcicutils-8.10.0.1b2.dist-info}/entry_points.txt +0 -0
dcicutils/command_utils.py
CHANGED
@@ -7,6 +7,7 @@ import os
|
|
7
7
|
import re
|
8
8
|
import requests
|
9
9
|
import subprocess
|
10
|
+
import sys
|
10
11
|
|
11
12
|
from typing import Callable, Optional
|
12
13
|
from .exceptions import InvalidParameterError
|
@@ -372,7 +373,7 @@ def script_catch_errors():
|
|
372
373
|
raise ScriptFailure(' '.join(message))
|
373
374
|
try:
|
374
375
|
yield fail
|
375
|
-
exit(0)
|
376
|
+
sys.exit(0)
|
376
377
|
except (Exception, ScriptFailure) as e:
|
377
378
|
if DEBUG_SCRIPT:
|
378
379
|
# If debugging, let the error propagate, do not trap it.
|
@@ -384,7 +385,7 @@ def script_catch_errors():
|
|
384
385
|
else:
|
385
386
|
message = str(e) # Note: We ignore the type, which isn't intended to be shown.
|
386
387
|
PRINT(message)
|
387
|
-
exit(1)
|
388
|
+
sys.exit(1)
|
388
389
|
|
389
390
|
|
390
391
|
class Question:
|
dcicutils/deployment_utils.py
CHANGED
@@ -396,9 +396,9 @@ class EBDeployer:
|
|
396
396
|
packaging_was_successful = cls.build_application_version(args.repo, args.version_name, branch=args.branch)
|
397
397
|
if packaging_was_successful: # XXX: how to best detect?
|
398
398
|
time.sleep(5) # give EB a second to catch up (it needs it)
|
399
|
-
exit(cls.deploy_new_version(args.env, args.repo, args.version_name))
|
399
|
+
sys.exit(cls.deploy_new_version(args.env, args.repo, args.version_name))
|
400
400
|
else:
|
401
|
-
exit(cls.deploy_indexer(args.env, args.application_version))
|
401
|
+
sys.exit(cls.deploy_indexer(args.env, args.application_version))
|
402
402
|
|
403
403
|
|
404
404
|
class IniFileManager:
|
dcicutils/ecr_scripts.py
CHANGED
@@ -3,6 +3,7 @@ import botocore.exceptions
|
|
3
3
|
import boto3
|
4
4
|
import contextlib
|
5
5
|
import os
|
6
|
+
import sys
|
6
7
|
|
7
8
|
from typing import Optional, Union, List
|
8
9
|
from .command_utils import yes_or_no
|
@@ -68,7 +69,7 @@ def ecr_command_context(account_number, ecs_repository=None, ecr_client=None):
|
|
68
69
|
elif account_number != account_number_in_environ:
|
69
70
|
raise RuntimeError("The account number you have specified does not match your declared credentials.")
|
70
71
|
yield ECRCommandContext(account_number=account_number, ecs_repository=ecs_repository, ecr_client=ecr_client)
|
71
|
-
exit(0)
|
72
|
+
sys.exit(0)
|
72
73
|
except botocore.exceptions.ClientError as e:
|
73
74
|
error_info = e.response.get('Error', {})
|
74
75
|
message = error_info.get('Message')
|
@@ -77,12 +78,12 @@ def ecr_command_context(account_number, ecs_repository=None, ecr_client=None):
|
|
77
78
|
raise RuntimeError("Your security token seems to have expired.")
|
78
79
|
elif message:
|
79
80
|
PRINT(f"{code}: {message}")
|
80
|
-
exit(1)
|
81
|
+
sys.exit(1)
|
81
82
|
else:
|
82
83
|
raise
|
83
84
|
except Exception as e:
|
84
85
|
PRINT(f"{full_class_name(e)}: {e}")
|
85
|
-
exit(1)
|
86
|
+
sys.exit(1)
|
86
87
|
|
87
88
|
|
88
89
|
class ECRCommandContext:
|
dcicutils/env_scripts.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import argparse
|
2
2
|
import boto3
|
3
3
|
import json
|
4
|
+
import sys
|
4
5
|
import yaml
|
5
6
|
|
6
7
|
from .lang_utils import disjoined_list
|
@@ -52,7 +53,7 @@ def show_global_env_bucket(bucket, mode='json', key=None):
|
|
52
53
|
else:
|
53
54
|
PRINT(f"There is no default bucket. Please use a '--bucket' argument"
|
54
55
|
f" to specify one of {disjoined_list(envs_buckets)}.")
|
55
|
-
exit(1)
|
56
|
+
sys.exit(1)
|
56
57
|
|
57
58
|
print_heading(bucket, style='=')
|
58
59
|
|
@@ -70,7 +71,7 @@ def show_global_env_bucket(bucket, mode='json', key=None):
|
|
70
71
|
except Exception as e:
|
71
72
|
PRINT("Bucket contents could not be downlaoded.")
|
72
73
|
print_error_message(e)
|
73
|
-
exit(1)
|
74
|
+
sys.exit(1)
|
74
75
|
|
75
76
|
object = None # Without this, PyCharm fusses that object might not get set. -kmp 20-Jul-2022
|
76
77
|
try:
|
@@ -78,7 +79,7 @@ def show_global_env_bucket(bucket, mode='json', key=None):
|
|
78
79
|
except Exception as e:
|
79
80
|
PRINT("Bucket contents could not be parsed as JSON.")
|
80
81
|
print_error_message(e)
|
81
|
-
exit(1)
|
82
|
+
sys.exit(1)
|
82
83
|
|
83
84
|
if mode == 'json':
|
84
85
|
PRINT(json.dumps(object, indent=2, default=str))
|
@@ -86,7 +87,7 @@ def show_global_env_bucket(bucket, mode='json', key=None):
|
|
86
87
|
PRINT(yaml.dump(object))
|
87
88
|
else:
|
88
89
|
PRINT(f"Unknown mode: {mode}. Try 'json' or 'yaml'.")
|
89
|
-
exit(1)
|
90
|
+
sys.exit(1)
|
90
91
|
|
91
92
|
|
92
93
|
DEFAULT_BUCKET = get_env_bucket()
|
dcicutils/progress_bar.py
CHANGED
@@ -249,7 +249,7 @@ class ProgressBar:
|
|
249
249
|
if self._interrupt_exit_message:
|
250
250
|
if isinstance(interrupt_exit_message := self._interrupt_exit_message(self), str):
|
251
251
|
print(interrupt_exit_message)
|
252
|
-
exit(1)
|
252
|
+
sys.exit(1)
|
253
253
|
elif interrupt_stop is False or ((interrupt_stop is None) and (self._interrupt_exit is False)):
|
254
254
|
set_interrupt_handler(handle_interrupt)
|
255
255
|
interrupt_continue = self._interrupt_continue(self) if self._interrupt_continue else None
|
@@ -33,6 +33,7 @@ import argparse
|
|
33
33
|
import os
|
34
34
|
import requests
|
35
35
|
import subprocess
|
36
|
+
import sys
|
36
37
|
import toml
|
37
38
|
|
38
39
|
from typing import Tuple, Union
|
@@ -335,7 +336,7 @@ def exit_with_no_action() -> None:
|
|
335
336
|
first prints a message saying no action was taken.
|
336
337
|
"""
|
337
338
|
PRINT("Exiting without taking action.")
|
338
|
-
exit(1)
|
339
|
+
sys.exit(1)
|
339
340
|
|
340
341
|
|
341
342
|
PRINT = print
|
@@ -201,17 +201,17 @@ def main():
|
|
201
201
|
return
|
202
202
|
else:
|
203
203
|
_print(f"No PATCH data found in file: {args.patch}")
|
204
|
-
exit(1)
|
204
|
+
sys.exit(1)
|
205
205
|
|
206
206
|
data = _get_portal_object(portal=portal, uuid=args.uuid, raw=args.raw,
|
207
207
|
database=args.database, check=args.bool, verbose=args.verbose)
|
208
208
|
if args.bool:
|
209
209
|
if data:
|
210
210
|
_print(f"{args.uuid}: found")
|
211
|
-
exit(0)
|
211
|
+
sys.exit(0)
|
212
212
|
else:
|
213
213
|
_print(f"{args.uuid}: not found")
|
214
|
-
exit(1)
|
214
|
+
sys.exit(1)
|
215
215
|
if args.copy:
|
216
216
|
pyperclip.copy(json.dumps(data, indent=4))
|
217
217
|
if args.yaml:
|
@@ -597,18 +597,18 @@ def _print_tree(root_name: Optional[str],
|
|
597
597
|
def _read_json_from_file(file: str) -> Optional[dict]:
|
598
598
|
if not os.path.exists(file):
|
599
599
|
_print(f"Cannot find file: {file}")
|
600
|
-
exit(1)
|
600
|
+
sys.exit(1)
|
601
601
|
try:
|
602
602
|
with io.open(file, "r") as f:
|
603
603
|
try:
|
604
604
|
return json.load(f)
|
605
605
|
except Exception:
|
606
606
|
_print(f"Cannot parse JSON in file: {file}")
|
607
|
-
exit(1)
|
607
|
+
sys.exit(1)
|
608
608
|
except Exception as e:
|
609
609
|
print(e)
|
610
610
|
_print(f"Cannot open file: {file}")
|
611
|
-
exit(1)
|
611
|
+
sys.exit(1)
|
612
612
|
|
613
613
|
|
614
614
|
def _print(*args, **kwargs):
|
@@ -620,7 +620,7 @@ def _print(*args, **kwargs):
|
|
620
620
|
def _exit(message: Optional[str] = None) -> None:
|
621
621
|
if message:
|
622
622
|
_print(f"ERROR: {message}")
|
623
|
-
exit(1)
|
623
|
+
sys.exit(1)
|
624
624
|
|
625
625
|
|
626
626
|
if __name__ == "__main__":
|
@@ -5,7 +5,7 @@ dcicutils/bundle_utils.py,sha256=ZVQcqlt7Yly8-YbL3A-5DW859_hMWpTL6dXtknEYZIw,346
|
|
5
5
|
dcicutils/captured_output.py,sha256=0hP7sPwleMaYXQAvCfJOxG8Z8T_JJYy8ADp8A5ZoblE,3295
|
6
6
|
dcicutils/cloudformation_utils.py,sha256=MtWJrSTXyiImgbPHgRvfH9bWso20ZPLTFJAfhDQSVj4,13786
|
7
7
|
dcicutils/codebuild_utils.py,sha256=CKpmhJ-Z8gYbkt1I2zyMlKtFdsg7T8lqrx3V5ieta-U,1155
|
8
|
-
dcicutils/command_utils.py,sha256=
|
8
|
+
dcicutils/command_utils.py,sha256=4LkszKXWlvgaUP_7d_tRsRqpOMc9IaohD2Kc9u9bEeU,18506
|
9
9
|
dcicutils/common.py,sha256=YE8Mt5-vaZWWz4uaChSVhqGFbFtW5QKtnIyOr4zG4vM,3955
|
10
10
|
dcicutils/contribution_scripts.py,sha256=0k5Gw1TumcD5SAcXVkDd6-yvuMEw-jUp5Kfb7FJH6XQ,2015
|
11
11
|
dcicutils/contribution_utils.py,sha256=vYLS1JUB3sKd24BUxZ29qUBqYeQBLK9cwo8x3k64uPg,25653
|
@@ -13,15 +13,15 @@ dcicutils/creds_utils.py,sha256=64BbIfS90T1eJmmQJrDyfrRa3V2F1x7T8lOrEeFfqJY,1112
|
|
13
13
|
dcicutils/data_readers.py,sha256=6EMrY7TjDE8H7bA_TCWtpLQP7slJ0YTL77_dNh6e7sg,7626
|
14
14
|
dcicutils/data_utils.py,sha256=k2OxOlsx7AJ6jF-YNlMyGus_JqSUBe4_n1s65Mv1gQQ,3098
|
15
15
|
dcicutils/datetime_utils.py,sha256=sM653aw_1zy1qBmfAH-WetCi2Fw9cnFK7FZN_Tg4onI,13499
|
16
|
-
dcicutils/deployment_utils.py,sha256=
|
16
|
+
dcicutils/deployment_utils.py,sha256=6Sv1cM9T944d_9CTJt8O2RPtpw9MiTIPKw_DgYLOnCU,69916
|
17
17
|
dcicutils/diff_utils.py,sha256=sQx-yz56DHAcQWOChYbAG3clXu7TbiZKlw-GggeveO0,8118
|
18
18
|
dcicutils/docker_utils.py,sha256=30gUiqz7X9rJwSPXTPn4ewjQibUgoSJqhP9o9vn5X-A,1747
|
19
|
-
dcicutils/ecr_scripts.py,sha256=
|
19
|
+
dcicutils/ecr_scripts.py,sha256=puiWqjIshGWNc7ErJvkyizQRINoDToDu7DXHM9ouKMc,19497
|
20
20
|
dcicutils/ecr_utils.py,sha256=V1Eif-6THI38W1uKXUyYs-5ciYAVkGLv0sVS4xoh70o,13079
|
21
21
|
dcicutils/ecs_utils.py,sha256=1sIIY5IVb__rNyZ5B9iIQKHiUIMldB7JRaeIISLaujY,3590
|
22
22
|
dcicutils/env_base.py,sha256=KQmChAvX9riF_khDlW4hmlrHO0GqFMNXrFdiuSmbZtc,6356
|
23
23
|
dcicutils/env_manager.py,sha256=Nte1oiW_AQ-isatzsf-fiNpPWInLdfRxzPrATdNoKkI,9444
|
24
|
-
dcicutils/env_scripts.py,sha256=
|
24
|
+
dcicutils/env_scripts.py,sha256=gAoXOemg-zA4I_IPeRuymIfhNOYCw_WmPUa6kcSiWkg,3936
|
25
25
|
dcicutils/env_utils.py,sha256=hJTXsn6GC55-55ja1ERBmUbeh-DjJABm74eYRGRaiSc,46970
|
26
26
|
dcicutils/env_utils_legacy.py,sha256=J81OAtJHN69o1beHO6q1j7_J6TeblSjnAHlS8VA5KSM,29032
|
27
27
|
dcicutils/es_utils.py,sha256=ZksLh5ei7kRUfiFltk8sd2ZSfh15twbstrMzBr8HNw4,7541
|
@@ -49,7 +49,7 @@ dcicutils/obfuscation_utils.py,sha256=fo2jOmDRC6xWpYX49u80bVNisqRRoPskFNX3ymFAmj
|
|
49
49
|
dcicutils/opensearch_utils.py,sha256=V2exmFYW8Xl2_pGFixF4I2Cc549Opwe4PhFi5twC0M8,1017
|
50
50
|
dcicutils/portal_object_utils.py,sha256=Az3n1aL-PQkN5gOFE6ZqC2XkYsqiwKlq7-tZggs1QN4,11062
|
51
51
|
dcicutils/portal_utils.py,sha256=R7v4uQUll34mn-NxyU3qoTouAwWrVDzW6W1zBGSU-M4,44762
|
52
|
-
dcicutils/progress_bar.py,sha256=
|
52
|
+
dcicutils/progress_bar.py,sha256=R3bWLMYM3Xq9PY7U0JadcFT1m7QmCbrbDp9qs9_Kf_c,19472
|
53
53
|
dcicutils/project_utils.py,sha256=qPdCaFmWUVBJw4rw342iUytwdQC0P-XKpK4mhyIulMM,31250
|
54
54
|
dcicutils/qa_checkers.py,sha256=cdXjeL0jCDFDLT8VR8Px78aS10hwNISOO5G_Zv2TZ6M,20534
|
55
55
|
dcicutils/qa_utils.py,sha256=TT0SiJWiuxYvbsIyhK9VO4uV_suxhB6CpuC4qPacCzQ,160208
|
@@ -57,9 +57,9 @@ dcicutils/redis_tools.py,sha256=qkcSNMtvqkpvts-Cm9gWhneK523Q_oHwhNUud1be1qk,7055
|
|
57
57
|
dcicutils/redis_utils.py,sha256=VJ-7g8pOZqR1ZCtdcjKz3-6as2DMUcs1b1zG6wSprH4,6462
|
58
58
|
dcicutils/s3_utils.py,sha256=LauLFQGvZLfpBJ81tYMikjLd3SJRz2R_FrL1n4xSlyI,28868
|
59
59
|
dcicutils/schema_utils.py,sha256=IIteRrg-iOJOFU17n2lvKByVdWdiMfuAQ1kf_QIM96Q,10604
|
60
|
-
dcicutils/scripts/publish_to_pypi.py,sha256=
|
60
|
+
dcicutils/scripts/publish_to_pypi.py,sha256=JCrAiYFF9lMkj3s2w0J2EtN8P65qEamMe3ZZYPCF4Yo,13904
|
61
61
|
dcicutils/scripts/run_license_checker.py,sha256=z2keYnRDZsHQbTeo1XORAXSXNJK5axVzL5LjiNqZ7jE,4184
|
62
|
-
dcicutils/scripts/view_portal_object.py,sha256=
|
62
|
+
dcicutils/scripts/view_portal_object.py,sha256=rnlIoblDpoLPJ-Bor7OHxLgrVZyvqoxA0jmHW8ogg3s,29805
|
63
63
|
dcicutils/secrets_utils.py,sha256=8dppXAsiHhJzI6NmOcvJV5ldvKkQZzh3Fl-cb8Wm7MI,19745
|
64
64
|
dcicutils/sheet_utils.py,sha256=VlmzteONW5VF_Q4vo0yA5vesz1ViUah1MZ_yA1rwZ0M,33629
|
65
65
|
dcicutils/snapshot_utils.py,sha256=ymP7PXH6-yEiXAt75w0ldQFciGNqWBClNxC5gfX2FnY,22961
|
@@ -73,8 +73,8 @@ dcicutils/trace_utils.py,sha256=g8kwV4ebEy5kXW6oOrEAUsurBcCROvwtZqz9fczsGRE,1769
|
|
73
73
|
dcicutils/validation_utils.py,sha256=cMZIU2cY98FYtzK52z5WUYck7urH6JcqOuz9jkXpqzg,14797
|
74
74
|
dcicutils/variant_utils.py,sha256=2H9azNx3xAj-MySg-uZ2SFqbWs4kZvf61JnK6b-h4Qw,4343
|
75
75
|
dcicutils/zip_utils.py,sha256=_Y9EmL3D2dUZhxucxHvrtmmlbZmK4FpSsHEb7rGSJLU,3265
|
76
|
-
dcicutils-8.10.0.
|
77
|
-
dcicutils-8.10.0.
|
78
|
-
dcicutils-8.10.0.
|
79
|
-
dcicutils-8.10.0.
|
80
|
-
dcicutils-8.10.0.
|
76
|
+
dcicutils-8.10.0.1b2.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
77
|
+
dcicutils-8.10.0.1b2.dist-info/METADATA,sha256=KmlGHSWKamA0Ry44aKGV2kgQNs4f0Qxi3XrxHvcDE0I,3440
|
78
|
+
dcicutils-8.10.0.1b2.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
79
|
+
dcicutils-8.10.0.1b2.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
|
80
|
+
dcicutils-8.10.0.1b2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|