utils
General utilities.
Classes¶
Functions¶
extract_regex_flags
¶
extract_regex_flags(regex_pattern: str) -> Tuple[str, str]
format_and_raise_error
¶
format_and_raise_error(
exc: Union[TypeError, subprocess.CalledProcessError]
) -> None
Format the error message from an exception and re-raise it as a BumpVersionError.
get_nested_value
¶
get_nested_value(d: dict, path: str) -> Any
Retrieves the value of a nested key in a dictionary based on the given path.
Parameters:
d
-
The dictionary to search.
TYPE:
dict
path
-
A string representing the path to the nested key, separated by periods.
TYPE:
str
Returns:
-
Any
-
The value of the nested key.
Raises:
-
KeyError
-
If a key in the path does not exist.
-
ValueError
-
If an element in the path is not a dictionary.
get_overrides
¶
get_overrides(**kwargs) -> dict
Return a dictionary containing only the overridden key-values.
key_val_string
¶
key_val_string(d: dict) -> str
Render the dictionary as a comma-delimited key=value string.
labels_for_format
¶
labels_for_format(serialize_format: str) -> List[str]
Return a list of labels for the given serialize_format.
run_command
¶
run_command(
command: list, env: Optional[dict] = None
) -> CompletedProcess
Run a shell command and return its output.
set_nested_value
¶
set_nested_value(d: dict, value: Any, path: str) -> None
Sets the value of a nested key in a dictionary based on the given path.
Parameters:
d
-
The dictionary to search.
TYPE:
dict
value
-
The value to set.
TYPE:
Any
path
-
A string representing the path to the nested key, separated by periods.
TYPE:
str
Raises:
-
ValueError
-
If an element in the path is not a dictionary.
-
KeyError
-
If a key in the path does not exist.