diff --git a/formate.toml b/formate.toml index 8fd44ce1..a5ddfdac 100644 --- a/formate.toml +++ b/formate.toml @@ -67,6 +67,7 @@ known_third_party = [ "packaging", "pre_commit", "pypi_json", + "pyproject_parser", "pyreadline", "pytest", "pytest_cov", diff --git a/repo_helper/files/docs.py b/repo_helper/files/docs.py index d1c7fa78..c8d0aa11 100644 --- a/repo_helper/files/docs.py +++ b/repo_helper/files/docs.py @@ -863,8 +863,8 @@ def make_sphinx_config_dict(templates: Environment) -> Dict[str, Any]: class PythonFormatTomlEncoder(dom_toml.TomlEncoder): - def dump_list(self, v: List) -> str: - values = DelimitedList(str(self.dump_value(u)) for u in v) + def format_inline_array(self, obj: Union[Tuple, List], nest_level: int) -> str: + values = DelimitedList(str(self.format_literal(u)) for u in obj) single_line = f"[{values:, }]" if len(single_line) <= self.max_width: @@ -873,18 +873,18 @@ def dump_list(self, v: List) -> str: retval = StringList(['[']) with retval.with_indent(" ", 1): - for u in v: - retval.append(f"{str(self.dump_value(u))},") + for u in obj: + retval.append(f"{str(self.format_literal(u))},") retval.append(']') return str(retval) - def dump_value(self, v: Any) -> str: - if isinstance(v, bool): - return str(v) + def format_literal(self, obj: object, *, nest_level: int = 0) -> str: + if isinstance(obj, bool): + return str(obj) - return super().dump_value(v) + return super().format_literal(obj, nest_level=nest_level) def _template_with_custom_css(managed_message: str, filename: str) -> List[str]: diff --git a/repo_helper/files/packaging.py b/repo_helper/files/packaging.py index 07d8fb82..2d4cb7a5 100644 --- a/repo_helper/files/packaging.py +++ b/repo_helper/files/packaging.py @@ -32,6 +32,7 @@ # 3rd party import dom_toml +import pyproject_parser from domdf_python_tools.paths import PathPlus from natsort import natsorted, ns from shippinglabel import normalize @@ -259,7 +260,7 @@ def make_pyproject(repo_path: pathlib.Path, templates: Environment) -> List[str] ) if invalid_lines: raise NotImplementedError(f"Unsupported requirement type(s): {invalid_lines}") - data["project"]["dependencies"] = sorted(parsed_requirements) + data["project"]["dependencies"] = list(map(str, sorted(parsed_requirements))) else: data["project"]["dynamic"] = ["dependencies"] @@ -452,7 +453,7 @@ def make_pyproject(repo_path: pathlib.Path, templates: Environment) -> List[str] del data["tool"] # TODO: managed message - dom_toml.dump(data, pyproject_file, encoder=dom_toml.TomlEncoder) + dom_toml.dump(data, pyproject_file, encoder=pyproject_parser.PyProjectTomlEncoder) return [pyproject_file.name] @@ -472,7 +473,7 @@ def make_setup(repo_path: pathlib.Path, templates: Environment) -> List[str]: setup_file.unlink(missing_ok=True) else: - setup = templates.get_template("setup._py") + setup_template = templates.get_template("setup._py") data = dict( extras_require="extras_require", @@ -487,10 +488,8 @@ def make_setup(repo_path: pathlib.Path, templates: Environment) -> List[str]: data["data_files"] = "[('share/applications', ['{modname}.desktop'])]".format_map(templates.globals) setup_args = sorted({**data, **templates.globals["additional_setup_args"]}.items()) - - setup_file.write_clean( - setup.render(additional_setup_args='\n'.join(f"\t\t{k}={v}," for k, v in setup_args)) - ) + setup = setup_template.render(additional_setup_args='\n'.join(f"\t\t{k}={v}," for k, v in setup_args)) + setup_file.write_clean(setup) with resource(repo_helper.files, "isort.cfg") as isort_config: yapf_style = PathPlus(isort_config).parent.parent / "templates" / "style.yapf" diff --git a/requirements.txt b/requirements.txt index 2b9ce845..ae2b46fc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ click==7.1.2 configconfig>=0.5.0 consolekit>=1.2.2 dict2css>=0.2.0 -dom-toml>=0.5.0 +dom-toml>=2.0.0 domdf-python-tools>=3.2.0 dulwich>=0.20.5 first>=2.0.2 @@ -14,6 +14,7 @@ mkrecipe>=0.3.0 natsort>=7.1.1 packaging>=20.9 pypi-json>=0.2.1 +pyproject-parser>=0.11.0 ruamel.yaml>=0.17.4 shippinglabel>=1.7.1 shippinglabel-conda>=0.1.0 diff --git a/tests/test_cli/test_show_/test_requirements_3_10_.tree b/tests/test_cli/test_show_/test_requirements_3_10_.tree index 62a75c4d..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_3_10_.tree +++ b/tests/test_cli/test_show_/test_requirements_3_10_.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,15 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -198,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -288,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -325,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -353,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -411,15 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -451,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -482,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -514,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -572,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -621,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -679,15 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -719,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -775,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_3_11__.tree b/tests/test_cli/test_show_/test_requirements_3_11__.tree index aa0ce13b..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_3_11__.tree +++ b/tests/test_cli/test_show_/test_requirements_3_11__.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,14 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -197,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -287,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -324,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -352,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -410,14 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -449,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -480,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -512,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -570,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -619,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -677,14 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -716,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -772,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_3_13__.tree b/tests/test_cli/test_show_/test_requirements_3_13__.tree index 665a4408..a6c8bad2 100644 --- a/tests/test_cli/test_show_/test_requirements_3_13__.tree +++ b/tests/test_cli/test_show_/test_requirements_3_13__.tree @@ -51,11 +51,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -82,7 +82,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -96,11 +96,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -136,14 +136,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -196,7 +195,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -286,7 +285,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -323,7 +322,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -351,29 +350,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -409,14 +408,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -448,7 +446,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -479,6 +477,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 ├── shippinglabel>=1.7.1 │ ├── apeye>=1.0.0 @@ -510,7 +563,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -568,7 +621,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -617,29 +670,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -675,14 +728,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -714,7 +766,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -770,7 +822,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_3_6_.tree b/tests/test_cli/test_show_/test_requirements_3_6_.tree index 67edf801..b3813805 100644 --- a/tests/test_cli/test_show_/test_requirements_3_6_.tree +++ b/tests/test_cli/test_show_/test_requirements_3_6_.tree @@ -80,7 +80,7 @@ repo_helper==2020.12.18 │ │ └── zipp>=3.1.0; python_version < "3.10" │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -89,7 +89,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -133,7 +133,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -158,7 +158,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -167,7 +167,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -232,7 +232,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -245,8 +245,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -338,7 +336,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -490,7 +488,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -556,7 +554,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -603,7 +601,7 @@ repo_helper==2020.12.18 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -612,7 +610,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -625,7 +623,7 @@ repo_helper==2020.12.18 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -637,7 +635,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -646,7 +644,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -711,7 +709,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -724,8 +722,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -780,7 +776,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -829,6 +825,106 @@ repo_helper==2020.12.18 │ ├── charset-normalizer~=2.0.0; python_version >= "3" │ ├── idna<4,>=2.5; python_version >= "3" │ └── urllib3<1.27,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ └── zipp>=0.5 +│ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ │ └── pyparsing!=3.0.5,>=2.0.2 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer~=2.0.0; python_version >= "3" +│ │ │ ├── idna<4,>=2.5; python_version >= "3" +│ │ │ └── urllib3<1.27,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ │ └── packaging>=20.4 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -884,7 +980,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -987,7 +1083,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1067,7 +1163,7 @@ repo_helper==2020.12.18 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1076,7 +1172,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1089,7 +1185,7 @@ repo_helper==2020.12.18 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -1101,7 +1197,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1110,7 +1206,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1175,7 +1271,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1188,8 +1284,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -1244,7 +1338,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1343,7 +1437,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" diff --git a/tests/test_cli/test_show_/test_requirements_3_7_.tree b/tests/test_cli/test_show_/test_requirements_3_7_.tree index b785d41a..66dc58b8 100644 --- a/tests/test_cli/test_show_/test_requirements_3_7_.tree +++ b/tests/test_cli/test_show_/test_requirements_3_7_.tree @@ -77,14 +77,14 @@ repo_helper==2020.12.18 │ │ └── zipp>=0.5 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -121,7 +121,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -144,14 +144,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -203,7 +203,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -214,8 +214,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -292,7 +290,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -419,7 +417,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -473,7 +471,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -514,14 +512,14 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -531,7 +529,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -544,14 +542,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -603,7 +601,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -614,8 +612,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -660,7 +656,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -702,6 +698,90 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ │ └── importlib-metadata; python_version < "3.8" +│ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ └── zipp>=0.5 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ └── zipp>=0.5 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -747,7 +827,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -833,7 +913,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -902,14 +982,14 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -919,7 +999,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -932,14 +1012,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -991,7 +1071,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1002,8 +1082,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -1048,7 +1126,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1132,7 +1210,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" diff --git a/tests/test_cli/test_show_/test_requirements_3_8_.tree b/tests/test_cli/test_show_/test_requirements_3_8_.tree index 71eea062..fc62b7bd 100644 --- a/tests/test_cli/test_show_/test_requirements_3_8_.tree +++ b/tests/test_cli/test_show_/test_requirements_3_8_.tree @@ -67,13 +67,13 @@ repo_helper==2020.12.18 │ │ └── zipp>=0.5 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ └── zipp>=0.5 @@ -106,7 +106,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -124,13 +124,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -176,7 +176,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -185,8 +185,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -253,7 +251,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -365,7 +363,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -412,7 +410,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -446,13 +444,13 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -461,7 +459,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -470,13 +468,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -522,7 +520,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -531,8 +529,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -572,7 +568,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -609,6 +605,77 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ └── zipp>=0.5 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -649,7 +716,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -723,7 +790,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -782,13 +849,13 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -797,7 +864,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -806,13 +873,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -858,7 +925,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -867,8 +934,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -908,7 +973,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -978,7 +1043,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ └── zipp>=0.5 diff --git a/tests/test_cli/test_show_/test_requirements_3_9_.tree b/tests/test_cli/test_show_/test_requirements_3_9_.tree index 62a75c4d..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_3_9_.tree +++ b/tests/test_cli/test_show_/test_requirements_3_9_.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,15 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -198,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -288,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -325,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -353,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -411,15 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -451,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -482,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -514,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -572,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -621,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -679,15 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -719,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -775,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_10_.tree b/tests/test_cli/test_show_/test_requirements_concise_3_10_.tree index 3c921aa0..81a11409 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_10_.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_10_.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -39,7 +39,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── referencing>=0.31.0 ├── requests>=2.27.1 ├── rpds-py>=0.7.1 @@ -51,9 +51,7 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 -├── tomli>=1.2.3; python_version < "3.11" ├── toolz>=0.11.1 ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 ├── typing-inspect>=0.6.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_11__.tree b/tests/test_cli/test_show_/test_requirements_concise_3_11__.tree index 94bb15d8..81a11409 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_11__.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_11__.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -39,7 +39,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── referencing>=0.31.0 ├── requests>=2.27.1 ├── rpds-py>=0.7.1 @@ -51,7 +51,6 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 ├── toolz>=0.11.1 ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_13__.tree b/tests/test_cli/test_show_/test_requirements_concise_3_13__.tree index 0b3bb972..e2370865 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_13__.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_13__.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -39,7 +39,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── referencing>=0.31.0 ├── requests>=2.27.1 ├── rpds-py>=0.7.1 @@ -50,7 +50,6 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 ├── toolz>=0.11.1 ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_6_.tree b/tests/test_cli/test_show_/test_requirements_concise_3_6_.tree index 65603da1..de44bde3 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_6_.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_6_.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -42,7 +42,7 @@ repo_helper==2020.12.18 ├── pygments>=2.2.0 ├── pyparsing!=3.0.5,>=2.0.2 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── pyrsistent>=0.14.0 ├── requests>=2.27.1 ├── ruamel-yaml-clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" @@ -54,8 +54,7 @@ repo_helper==2020.12.18 ├── six>=1.11.0 ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 -├── tomli>=1.2.3; python_version < "3.11" +├── tomli>=1.2.3 ├── toolz>=0.11.1 ├── typing-extensions>=3.6.4; python_version < "3.8" ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_7_.tree b/tests/test_cli/test_show_/test_requirements_concise_3_7_.tree index b0722779..7862fbe6 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_7_.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_7_.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -42,7 +42,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 ├── requests>=2.27.1 ├── ruamel-yaml-clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" @@ -53,9 +53,7 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 -├── tomli>=1.2.3; python_version < "3.11" ├── toolz>=0.11.1 ├── typing-extensions>=4.7.1; python_version < "3.8" ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_8_.tree b/tests/test_cli/test_show_/test_requirements_concise_3_8_.tree index f80eddd2..baccb878 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_8_.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_8_.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -42,7 +42,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── referencing>=0.31.0 ├── requests>=2.27.1 ├── rpds-py>=0.7.1 @@ -54,9 +54,7 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 -├── tomli>=1.2.3; python_version < "3.11" ├── toolz>=0.11.1 ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 ├── typing-inspect>=0.6.0 diff --git a/tests/test_cli/test_show_/test_requirements_concise_3_9_.tree b/tests/test_cli/test_show_/test_requirements_concise_3_9_.tree index 3c921aa0..81a11409 100644 --- a/tests/test_cli/test_show_/test_requirements_concise_3_9_.tree +++ b/tests/test_cli/test_show_/test_requirements_concise_3_9_.tree @@ -16,7 +16,7 @@ repo_helper==2020.12.18 ├── deprecation-alias>=0.3.2 ├── dict2css>=0.2.0 ├── dist-meta>=0.5.0 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 ├── domdf-python-tools>=3.8.0 ├── dulwich!=0.20.7,!=0.20.8,!=0.20.9,>=0.20.5 ├── filelock>=3.0.12 @@ -39,7 +39,7 @@ repo_helper==2020.12.18 ├── prettyprinter>=0.18.0 ├── pygments>=2.2.0 ├── pypi-json>=0.2.1 -├── pyproject-parser>=0.6.0 +├── pyproject-parser>=0.11.0 ├── referencing>=0.31.0 ├── requests>=2.27.1 ├── rpds-py>=0.7.1 @@ -51,9 +51,7 @@ repo_helper==2020.12.18 ├── six ├── southwark>=0.7.1 ├── tabulate>=0.8.8 -├── toml>=0.10.2 ├── tomli>=2.0.1 -├── tomli>=1.2.3; python_version < "3.11" ├── toolz>=0.11.1 ├── typing-extensions!=3.10.0.1,!=4.7.0,>=4.0.0 ├── typing-inspect>=0.6.0 diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_10_.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_10_.tree index 62a75c4d..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_10_.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_10_.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,15 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -198,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -288,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -325,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -353,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -411,15 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -451,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -482,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -514,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -572,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -621,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -679,15 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -719,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -775,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_11__.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_11__.tree index aa0ce13b..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_11__.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_11__.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,14 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -197,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -287,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -324,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -352,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -410,14 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -449,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -480,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -512,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -570,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -619,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -677,14 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -716,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -772,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_13__.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_13__.tree index 665a4408..a6c8bad2 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_13__.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_13__.tree @@ -51,11 +51,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -82,7 +82,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -96,11 +96,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -136,14 +136,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -196,7 +195,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -286,7 +285,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -323,7 +322,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -351,29 +350,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -409,14 +408,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -448,7 +446,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -479,6 +477,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 ├── shippinglabel>=1.7.1 │ ├── apeye>=1.0.0 @@ -510,7 +563,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -568,7 +621,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -617,29 +670,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -675,14 +728,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -714,7 +766,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -770,7 +822,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_6_.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_6_.tree index 67edf801..b3813805 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_6_.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_6_.tree @@ -80,7 +80,7 @@ repo_helper==2020.12.18 │ │ └── zipp>=3.1.0; python_version < "3.10" │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -89,7 +89,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -133,7 +133,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -158,7 +158,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -167,7 +167,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -232,7 +232,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -245,8 +245,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -338,7 +336,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -490,7 +488,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -556,7 +554,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -603,7 +601,7 @@ repo_helper==2020.12.18 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -612,7 +610,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -625,7 +623,7 @@ repo_helper==2020.12.18 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -637,7 +635,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -646,7 +644,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -711,7 +709,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -724,8 +722,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -780,7 +776,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -829,6 +825,106 @@ repo_helper==2020.12.18 │ ├── charset-normalizer~=2.0.0; python_version >= "3" │ ├── idna<4,>=2.5; python_version >= "3" │ └── urllib3<1.27,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ └── zipp>=0.5 +│ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ │ └── pyparsing!=3.0.5,>=2.0.2 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer~=2.0.0; python_version >= "3" +│ │ │ ├── idna<4,>=2.5; python_version >= "3" +│ │ │ └── urllib3<1.27,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ │ └── packaging>=20.4 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── importlib-resources>=3.0.0; python_version < "3.7" +│ │ │ │ └── zipp>=3.1.0; python_version < "3.10" +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ │ └── pyparsing!=3.0.5,>=2.0.2 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -884,7 +980,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -987,7 +1083,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1067,7 +1163,7 @@ repo_helper==2020.12.18 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1076,7 +1172,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1089,7 +1185,7 @@ repo_helper==2020.12.18 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 │ │ └── pyparsing!=3.0.5,>=2.0.2 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -1101,7 +1197,7 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1110,7 +1206,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1175,7 +1271,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1188,8 +1284,6 @@ repo_helper==2020.12.18 │ │ │ │ └── pyparsing!=3.0.5,>=2.0.2 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -1244,7 +1338,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1343,7 +1437,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=3.1.0; python_version < "3.10" │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_7_.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_7_.tree index b785d41a..66dc58b8 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_7_.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_7_.tree @@ -77,14 +77,14 @@ repo_helper==2020.12.18 │ │ └── zipp>=0.5 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -121,7 +121,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -144,14 +144,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -203,7 +203,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -214,8 +214,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -292,7 +290,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -419,7 +417,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -473,7 +471,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -514,14 +512,14 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -531,7 +529,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -544,14 +542,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -603,7 +601,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -614,8 +612,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -660,7 +656,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -702,6 +698,90 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ │ └── importlib-metadata; python_version < "3.8" +│ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ └── zipp>=0.5 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ └── zipp>=0.5 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -747,7 +827,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -833,7 +913,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -902,14 +982,14 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -919,7 +999,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -932,14 +1012,14 @@ repo_helper==2020.12.18 │ │ │ └── importlib-metadata; python_version < "3.8" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ └── zipp>=0.5 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -991,7 +1071,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1002,8 +1082,6 @@ repo_helper==2020.12.18 │ │ │ ├── platformdirs>=2.3.0 │ │ │ │ └── typing-extensions>=4.7.1; python_version < "3.8" │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -1048,7 +1126,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" @@ -1132,7 +1210,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ ├── typing-extensions>=3.6.4; python_version < "3.8" diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_8_.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_8_.tree index 71eea062..fc62b7bd 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_8_.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_8_.tree @@ -67,13 +67,13 @@ repo_helper==2020.12.18 │ │ └── zipp>=0.5 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ └── zipp>=0.5 @@ -106,7 +106,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -124,13 +124,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -176,7 +176,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -185,8 +185,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -253,7 +251,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -365,7 +363,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -412,7 +410,7 @@ repo_helper==2020.12.18 │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -446,13 +444,13 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -461,7 +459,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -470,13 +468,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -522,7 +520,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -531,8 +529,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -572,7 +568,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -609,6 +605,77 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ └── zipp>=0.5 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ │ └── zipp>=0.5 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ │ └── zipp>=0.5 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" +│ │ │ │ └── zipp>=0.5 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -649,7 +716,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -723,7 +790,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -782,13 +849,13 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -797,7 +864,7 @@ repo_helper==2020.12.18 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" @@ -806,13 +873,13 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ └── zipp>=0.5 @@ -858,7 +925,7 @@ repo_helper==2020.12.18 │ │ │ │ │ │ └── zipp>=0.5 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ │ │ └── zipp>=0.5 @@ -867,8 +934,6 @@ repo_helper==2020.12.18 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -908,7 +973,7 @@ repo_helper==2020.12.18 │ │ │ │ └── zipp>=0.5 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ │ └── zipp>=0.5 @@ -978,7 +1043,7 @@ repo_helper==2020.12.18 │ │ │ └── zipp>=0.5 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── importlib-metadata>=3.6.0; python_version < "3.9" │ │ └── zipp>=0.5 diff --git a/tests/test_cli/test_show_/test_requirements_no_pager_3_9_.tree b/tests/test_cli/test_show_/test_requirements_no_pager_3_9_.tree index 62a75c4d..97fccf51 100644 --- a/tests/test_cli/test_show_/test_requirements_no_pager_3_9_.tree +++ b/tests/test_cli/test_show_/test_requirements_no_pager_3_9_.tree @@ -52,11 +52,11 @@ repo_helper==2020.12.18 │ └── domdf-python-tools>=2.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 -├── dom-toml>=0.5.0 +├── dom-toml>=2.0.0 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 -│ └── toml>=0.10.2 +│ └── tomli>=1.2.3 ├── domdf-python-tools>=3.2.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 @@ -83,7 +83,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -97,11 +97,11 @@ repo_helper==2020.12.18 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -137,15 +137,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ ├── shippinglabel-conda>=0.1.0 │ │ ├── apeye>=1.0.0 @@ -198,7 +196,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -288,7 +286,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -325,7 +323,7 @@ repo_helper==2020.12.18 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=3.1.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -353,29 +351,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -411,15 +409,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -451,7 +447,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -482,6 +478,61 @@ repo_helper==2020.12.18 │ ├── charset-normalizer<4,>=2 │ ├── idna<4,>=2.5 │ └── urllib3<3,>=1.21.1 +├── pyproject-parser>=0.11.0 +│ ├── apeye-core>=1.0.0 +│ │ ├── domdf-python-tools>=2.6.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── idna>=2.5 +│ ├── attrs>=20.3.0 +│ ├── dom-toml>=2.0.0 +│ │ ├── domdf-python-tools>=2.8.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ └── tomli>=1.2.3 +│ ├── domdf-python-tools>=2.8.0 +│ │ ├── natsort>=7.0.1 +│ │ └── typing-extensions>=3.7.4.1 +│ ├── natsort>=7.1.1 +│ ├── packaging>=20.9 +│ ├── shippinglabel>=1.0.0 +│ │ ├── apeye>=1.0.0 +│ │ │ ├── apeye-core>=1.0.0b2 +│ │ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ │ └── idna>=2.5 +│ │ │ ├── domdf-python-tools>=2.6.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── platformdirs>=2.3.0 +│ │ │ └── requests>=2.24.0 +│ │ │ ├── certifi>=2017.4.17 +│ │ │ ├── charset-normalizer<4,>=2 +│ │ │ ├── idna<4,>=2.5 +│ │ │ └── urllib3<3,>=1.21.1 +│ │ ├── deprecation-alias>=0.3.2 +│ │ │ ├── deprecation>=2.1.0 +│ │ │ │ └── packaging +│ │ │ └── packaging>=20.4 +│ │ ├── dist-meta>=0.1.2 +│ │ │ ├── domdf-python-tools>=3.1.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ ├── handy-archives>=0.1.0 +│ │ │ └── packaging>=20.9 +│ │ ├── dom-toml>=0.2.2 +│ │ │ ├── domdf-python-tools>=2.8.0 +│ │ │ │ ├── natsort>=7.0.1 +│ │ │ │ └── typing-extensions>=3.7.4.1 +│ │ │ └── tomli>=1.2.3 +│ │ ├── domdf-python-tools>=3.1.0 +│ │ │ ├── natsort>=7.0.1 +│ │ │ └── typing-extensions>=3.7.4.1 +│ │ ├── packaging>=20.9 +│ │ ├── platformdirs>=2.3.0 +│ │ └── typing-extensions>=3.7.4.3 +│ └── typing-extensions!=4.7.0,>=3.7.4.3 ├── ruamel.yaml>=0.17.4 │ └── ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.13" ├── shippinglabel>=1.7.1 @@ -514,7 +565,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -572,7 +623,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -621,29 +672,29 @@ repo_helper==2020.12.18 │ │ │ └── typing-extensions>=3.7.4.1 │ │ ├── handy-archives>=0.1.0 │ │ └── packaging>=20.9 -│ ├── dom-toml>=0.4.0 +│ ├── dom-toml>=2.0.0 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 │ ├── handy-archives>=0.2.0 │ ├── natsort>=7.1.1 │ ├── packaging>=20.9 -│ ├── pyproject-parser>=0.6.0 +│ ├── pyproject-parser>=0.11.0 │ │ ├── apeye-core>=1.0.0 │ │ │ ├── domdf-python-tools>=2.6.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ └── idna>=2.5 │ │ ├── attrs>=20.3.0 -│ │ ├── dom-toml>=0.4.0 +│ │ ├── dom-toml>=2.0.0 │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ └── toml>=0.10.2 +│ │ │ └── tomli>=1.2.3 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 @@ -679,15 +730,13 @@ repo_helper==2020.12.18 │ │ │ │ ├── domdf-python-tools>=2.8.0 │ │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ │ └── typing-extensions>=3.7.4.1 -│ │ │ │ └── toml>=0.10.2 +│ │ │ │ └── tomli>=1.2.3 │ │ │ ├── domdf-python-tools>=3.1.0 │ │ │ │ ├── natsort>=7.0.1 │ │ │ │ └── typing-extensions>=3.7.4.1 │ │ │ ├── packaging>=20.9 │ │ │ ├── platformdirs>=2.3.0 │ │ │ └── typing-extensions>=3.7.4.3 -│ │ ├── toml>=0.10.2 -│ │ ├── tomli>=1.2.3; python_version < "3.11" │ │ └── typing-extensions!=4.7.0,>=3.7.4.3 │ └── shippinglabel>=0.16.0 │ ├── apeye>=1.0.0 @@ -719,7 +768,7 @@ repo_helper==2020.12.18 │ │ ├── domdf-python-tools>=2.8.0 │ │ │ ├── natsort>=7.0.1 │ │ │ └── typing-extensions>=3.7.4.1 -│ │ └── toml>=0.10.2 +│ │ └── tomli>=1.2.3 │ ├── domdf-python-tools>=3.1.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 @@ -775,7 +824,7 @@ repo_helper==2020.12.18 │ ├── domdf-python-tools>=2.8.0 │ │ ├── natsort>=7.0.1 │ │ └── typing-extensions>=3.7.4.1 - │ └── toml>=0.10.2 + │ └── tomli>=1.2.3 ├── domdf-python-tools>=2.5.0 │ ├── natsort>=7.0.1 │ └── typing-extensions>=3.7.4.1 diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_flit_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_flit_.toml index 53d12467..2fc278b5 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_flit_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_flit_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -137,9 +136,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -147,6 +143,9 @@ order = 10 order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_hatch_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_hatch_.toml index 6073d2ec..86ef13d8 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_hatch_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_hatch_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -34,6 +33,25 @@ Homepage = "https://github.com/octocat/hello-world" "Source Code" = "https://github.com/octocat/hello-world" Documentation = "https://hello-world.readthedocs.io/en/latest" +[tool.hatch.build] +exclude = [ + "/*", + "!/hello_world", + "!/hello_world/**/requirements.txt", + "!/requirements.txt", + "tests", + "doc-source", +] + +[tool.hatch.build.sdist] +include = [ "hello_world", "requirements.txt",] + +[tool.hatch.build.wheel] +include = [ "hello_world",] + +[tool.hatch.metadata.hooks.requirements_txt] +files = [ "requirements.txt",] + [tool.mkrecipe] conda-channels = [] extras = "none" @@ -136,19 +154,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - -[tool.hatch.build] -exclude = [ - "/*", - "!/hello_world", - "!/hello_world/**/requirements.txt", - "!/requirements.txt", - "tests", - "doc-source", -] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -156,11 +161,8 @@ order = 10 order = 30 include = false -[tool.hatch.build.sdist] -include = [ "hello_world", "requirements.txt",] - -[tool.hatch.build.wheel] -include = [ "hello_world",] +[tool.snippet-fmt] +directives = [ "code-block",] [tool.snippet-fmt.languages.python] reformat = true @@ -171,6 +173,3 @@ reformat = true [tool.snippet-fmt.languages.ini] [tool.snippet-fmt.languages.json] - -[tool.hatch.metadata.hooks.requirements_txt] -files = [ "requirements.txt",] diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_maturin_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_maturin_.toml index aef16479..b05a7051 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_maturin_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_maturin_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -137,9 +136,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -147,6 +143,9 @@ order = 10 order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_setuptools_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_setuptools_.toml index c6c473d4..f232ce88 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_setuptools_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_setuptools_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -141,9 +140,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -151,6 +147,9 @@ order = 10 order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_whey_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_whey_.toml index 68ab974c..75566ef2 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_whey_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_no_tests_backend_whey_.toml @@ -14,7 +14,6 @@ dynamic = [ "requires-python", "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -126,9 +125,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -136,6 +132,9 @@ order = 10 order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_flit_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_flit_.toml index 5c7bf5b0..d5f2b62c 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_flit_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_flit_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -135,9 +134,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -149,6 +145,9 @@ include = false order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_hatch_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_hatch_.toml index f394de94..00145b41 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_hatch_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_hatch_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -34,6 +33,25 @@ Homepage = "https://github.com/octocat/hello-world" "Source Code" = "https://github.com/octocat/hello-world" Documentation = "https://hello-world.readthedocs.io/en/latest" +[tool.hatch.build] +exclude = [ + "/*", + "!/hello_world", + "!/hello_world/**/requirements.txt", + "!/requirements.txt", + "tests", + "doc-source", +] + +[tool.hatch.build.sdist] +include = [ "hello_world", "requirements.txt",] + +[tool.hatch.build.wheel] +include = [ "hello_world",] + +[tool.hatch.metadata.hooks.requirements_txt] +files = [ "requirements.txt",] + [tool.mkrecipe] conda-channels = [] extras = "none" @@ -134,19 +152,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - -[tool.hatch.build] -exclude = [ - "/*", - "!/hello_world", - "!/hello_world/**/requirements.txt", - "!/requirements.txt", - "tests", - "doc-source", -] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -158,11 +163,8 @@ include = false order = 30 include = false -[tool.hatch.build.sdist] -include = [ "hello_world", "requirements.txt",] - -[tool.hatch.build.wheel] -include = [ "hello_world",] +[tool.snippet-fmt] +directives = [ "code-block",] [tool.snippet-fmt.languages.python] reformat = true @@ -173,6 +175,3 @@ reformat = true [tool.snippet-fmt.languages.ini] [tool.snippet-fmt.languages.json] - -[tool.hatch.metadata.hooks.requirements_txt] -files = [ "requirements.txt",] diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_maturin_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_maturin_.toml index e39c0c06..0d47210a 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_maturin_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_maturin_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -135,9 +134,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -149,6 +145,9 @@ include = false order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_setuptools_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_setuptools_.toml index 709c4833..c08e7391 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_setuptools_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_setuptools_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -139,9 +138,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -153,6 +149,9 @@ include = false order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_whey_.toml b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_whey_.toml index 2c47755f..5f291597 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_whey_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_docs_tests_backend_whey_.toml @@ -14,7 +14,6 @@ dynamic = [ "requires-python", "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -124,9 +123,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -138,6 +134,9 @@ include = false order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_flit_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_flit_.toml index f1ef4e5d..d5f50ddf 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_flit_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_flit_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -57,12 +56,12 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_hatch_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_hatch_.toml index 9f985979..eea9f581 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_hatch_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_hatch_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -33,6 +32,25 @@ Homepage = "https://github.com/octocat/hello-world" "Issue Tracker" = "https://github.com/octocat/hello-world/issues" "Source Code" = "https://github.com/octocat/hello-world" +[tool.hatch.build] +exclude = [ + "/*", + "!/hello_world", + "!/hello_world/**/requirements.txt", + "!/requirements.txt", + "tests", + "doc-source", +] + +[tool.hatch.build.sdist] +include = [ "hello_world", "requirements.txt",] + +[tool.hatch.build.wheel] +include = [ "hello_world",] + +[tool.hatch.metadata.hooks.requirements_txt] +files = [ "requirements.txt",] + [tool.mkrecipe] conda-channels = [] extras = "none" @@ -56,27 +74,11 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - -[tool.hatch.build] -exclude = [ - "/*", - "!/hello_world", - "!/hello_world/**/requirements.txt", - "!/requirements.txt", - "tests", - "doc-source", -] - [tool.dependency-dash."requirements.txt"] order = 10 -[tool.hatch.build.sdist] -include = [ "hello_world", "requirements.txt",] - -[tool.hatch.build.wheel] -include = [ "hello_world",] +[tool.snippet-fmt] +directives = [ "code-block",] [tool.snippet-fmt.languages.python] reformat = true @@ -87,6 +89,3 @@ reformat = true [tool.snippet-fmt.languages.ini] [tool.snippet-fmt.languages.json] - -[tool.hatch.metadata.hooks.requirements_txt] -files = [ "requirements.txt",] diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_maturin_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_maturin_.toml index 2a5bb9c2..e6dca26d 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_maturin_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_maturin_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -57,12 +56,12 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_setuptools_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_setuptools_.toml index b6fc3421..366278ee 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_setuptools_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_setuptools_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -61,12 +60,12 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_whey_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_whey_.toml index 99949075..f640a325 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_whey_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_no_tests_backend_whey_.toml @@ -14,7 +14,6 @@ dynamic = [ "requires-python", "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -46,12 +45,12 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_flit_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_flit_.toml index fbf54aef..22f2eddb 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_flit_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_flit_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -55,9 +54,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -65,6 +61,9 @@ order = 10 order = 20 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_hatch_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_hatch_.toml index b60129ba..5a2940d2 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_hatch_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_hatch_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -33,6 +32,25 @@ Homepage = "https://github.com/octocat/hello-world" "Issue Tracker" = "https://github.com/octocat/hello-world/issues" "Source Code" = "https://github.com/octocat/hello-world" +[tool.hatch.build] +exclude = [ + "/*", + "!/hello_world", + "!/hello_world/**/requirements.txt", + "!/requirements.txt", + "tests", + "doc-source", +] + +[tool.hatch.build.sdist] +include = [ "hello_world", "requirements.txt",] + +[tool.hatch.build.wheel] +include = [ "hello_world",] + +[tool.hatch.metadata.hooks.requirements_txt] +files = [ "requirements.txt",] + [tool.mkrecipe] conda-channels = [] extras = "none" @@ -54,19 +72,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - -[tool.hatch.build] -exclude = [ - "/*", - "!/hello_world", - "!/hello_world/**/requirements.txt", - "!/requirements.txt", - "tests", - "doc-source", -] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -74,11 +79,8 @@ order = 10 order = 20 include = false -[tool.hatch.build.sdist] -include = [ "hello_world", "requirements.txt",] - -[tool.hatch.build.wheel] -include = [ "hello_world",] +[tool.snippet-fmt] +directives = [ "code-block",] [tool.snippet-fmt.languages.python] reformat = true @@ -89,6 +91,3 @@ reformat = true [tool.snippet-fmt.languages.ini] [tool.snippet-fmt.languages.json] - -[tool.hatch.metadata.hooks.requirements_txt] -files = [ "requirements.txt",] diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_maturin_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_maturin_.toml index f169029c..e834350c 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_maturin_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_maturin_.toml @@ -25,7 +25,6 @@ dependencies = [ "domdf-python-tools>=2.8.0", "toml>=0.10.2",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -55,9 +54,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -65,6 +61,9 @@ order = 10 order = 20 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_setuptools_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_setuptools_.toml index ba8e3d8d..9cfc6a77 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_setuptools_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_setuptools_.toml @@ -24,7 +24,6 @@ dynamic = [ "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -59,9 +58,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -69,6 +65,9 @@ order = 10 order = 20 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_whey_.toml b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_whey_.toml index 4221da5f..d7c57fb9 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_whey_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_no_docs_tests_backend_whey_.toml @@ -14,7 +14,6 @@ dynamic = [ "requires-python", "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -44,9 +43,6 @@ no_implicit_optional = true show_error_codes = true plugins = [ "my.mypy:plugin",] -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -54,6 +50,9 @@ order = 10 order = 20 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_no_tests_.toml b/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_no_tests_.toml index 793dc0a0..4d7389a9 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_no_tests_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_no_tests_.toml @@ -15,7 +15,6 @@ dynamic = [ "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -129,9 +128,6 @@ warn_unused_ignores = true no_implicit_optional = true show_error_codes = true -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -139,6 +135,9 @@ order = 10 order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_tests_.toml b/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_tests_.toml index bda5e7f6..5bc01965 100644 --- a/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_tests_.toml +++ b/tests/test_files/test_packaging_/test_make_pyproject_whey_extras_tests_.toml @@ -15,7 +15,6 @@ dynamic = [ "classifiers", "dependencies",] name = "E. Xample" email = "j.bloggs@example.com" - [project.license] file = "LICENSE" @@ -127,9 +126,6 @@ warn_unused_ignores = true no_implicit_optional = true show_error_codes = true -[tool.snippet-fmt] -directives = [ "code-block",] - [tool.dependency-dash."requirements.txt"] order = 10 @@ -141,6 +137,9 @@ include = false order = 30 include = false +[tool.snippet-fmt] +directives = [ "code-block",] + [tool.snippet-fmt.languages.python] reformat = true diff --git a/tests/test_files/test_testing_/test_make_formate_toml_case_1.toml b/tests/test_files/test_testing_/test_make_formate_toml_case_1.toml index 924d9a1f..c7c01b3b 100644 --- a/tests/test_files/test_testing_/test_make_formate_toml_case_1.toml +++ b/tests/test_files/test_testing_/test_make_formate_toml_case_1.toml @@ -6,21 +6,17 @@ noqa-reformat = 60 ellipsis-reformat = 70 squish_stubs = 80 -[config] -indent = "\t" -line_length = 115 - [hooks.yapf] priority = 30 -[hooks.isort] -priority = 50 - [hooks.yapf.kwargs] yapf_style = ".style.yapf" +[hooks.isort] +priority = 50 + [hooks.isort.kwargs] -indent = "\t\t" +indent = " " multi_line_output = 8 import_heading_stdlib = "stdlib" import_heading_thirdparty = "3rd party" @@ -47,3 +43,7 @@ known_third_party = [ "wheel", ] known_first_party = [ "hello_world",] + +[config] +indent = " " +line_length = 115 diff --git a/tests/test_files/test_testing_/test_make_formate_toml_case_2.toml b/tests/test_files/test_testing_/test_make_formate_toml_case_2.toml index 0a794f15..e9da1a75 100644 --- a/tests/test_files/test_testing_/test_make_formate_toml_case_2.toml +++ b/tests/test_files/test_testing_/test_make_formate_toml_case_2.toml @@ -6,21 +6,17 @@ noqa-reformat = 60 ellipsis-reformat = 70 squish_stubs = 80 -[config] -indent = "\t" -line_length = 115 - [hooks.yapf] priority = 30 -[hooks.isort] -priority = 50 - [hooks.yapf.kwargs] yapf_style = ".style.yapf" +[hooks.isort] +priority = 50 + [hooks.isort.kwargs] -indent = "\t\t" +indent = " " multi_line_output = 8 import_heading_stdlib = "stdlib" import_heading_thirdparty = "3rd party" @@ -48,3 +44,7 @@ known_third_party = [ "wheel", ] known_first_party = [ "hello_world",] + +[config] +indent = " " +line_length = 115 diff --git a/tests/test_files/test_testing_/test_make_formate_toml_case_3.toml b/tests/test_files/test_testing_/test_make_formate_toml_case_3.toml index 0a794f15..e9da1a75 100644 --- a/tests/test_files/test_testing_/test_make_formate_toml_case_3.toml +++ b/tests/test_files/test_testing_/test_make_formate_toml_case_3.toml @@ -6,21 +6,17 @@ noqa-reformat = 60 ellipsis-reformat = 70 squish_stubs = 80 -[config] -indent = "\t" -line_length = 115 - [hooks.yapf] priority = 30 -[hooks.isort] -priority = 50 - [hooks.yapf.kwargs] yapf_style = ".style.yapf" +[hooks.isort] +priority = 50 + [hooks.isort.kwargs] -indent = "\t\t" +indent = " " multi_line_output = 8 import_heading_stdlib = "stdlib" import_heading_thirdparty = "3rd party" @@ -48,3 +44,7 @@ known_third_party = [ "wheel", ] known_first_party = [ "hello_world",] + +[config] +indent = " " +line_length = 115