dependence 0.3.6__tar.gz → 0.3.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dependence-0.3.6 → dependence-0.3.7}/PKG-INFO +7 -4
- {dependence-0.3.6 → dependence-0.3.7}/README.md +5 -2
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/PKG-INFO +7 -4
- {dependence-0.3.6 → dependence-0.3.7}/setup.cfg +2 -2
- {dependence-0.3.6 → dependence-0.3.7}/tests/test_freeze.py +1 -1
- {dependence-0.3.6 → dependence-0.3.7}/tests/test_update.py +3 -1
- {dependence-0.3.6 → dependence-0.3.7}/dependence/__init__.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/__main__.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/_utilities.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/freeze.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/py.typed +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/update.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence/utilities.py +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/SOURCES.txt +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/dependency_links.txt +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/entry_points.txt +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/requires.txt +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/dependence.egg-info/top_level.txt +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/pyproject.toml +0 -0
- {dependence-0.3.6 → dependence-0.3.7}/setup.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dependence
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
4
4
|
Summary: Requirement (dependency) management for python projects
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://dependence.enorganic.org
|
|
6
6
|
Author-email: david@belais.me
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: requirements,dependencies
|
|
@@ -17,12 +17,15 @@ Requires-Dist: setuptools>63
|
|
|
17
17
|
# dependence
|
|
18
18
|
|
|
19
19
|
[](https://github.com/enorganic/dependence/actions/workflows/test.yml)
|
|
20
|
-
[](https://badge.fury.io/py/dependence)
|
|
21
21
|
|
|
22
22
|
This project provides a Command Line Interface and library for inspecting
|
|
23
23
|
and updating python project dependency versions in setup.cfg, pyproject.toml,
|
|
24
24
|
and requirements.txt files.
|
|
25
25
|
|
|
26
|
+
- [Documentation](https://enorganic.github.io/dependence/)
|
|
27
|
+
- [Contributing](https://enorganic.github.io/dependence/contributing)
|
|
28
|
+
|
|
26
29
|
## Installation
|
|
27
30
|
|
|
28
31
|
You can install `dependence` with pip:
|
|
@@ -86,7 +89,7 @@ optional arguments:
|
|
|
86
89
|
|
|
87
90
|
Example:
|
|
88
91
|
|
|
89
|
-
```
|
|
92
|
+
```bash
|
|
90
93
|
dependence update -aen all setup.cfg pyproject.toml tox.ini
|
|
91
94
|
```
|
|
92
95
|
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# dependence
|
|
2
2
|
|
|
3
3
|
[](https://github.com/enorganic/dependence/actions/workflows/test.yml)
|
|
4
|
-
[](https://badge.fury.io/py/dependence)
|
|
5
5
|
|
|
6
6
|
This project provides a Command Line Interface and library for inspecting
|
|
7
7
|
and updating python project dependency versions in setup.cfg, pyproject.toml,
|
|
8
8
|
and requirements.txt files.
|
|
9
9
|
|
|
10
|
+
- [Documentation](https://enorganic.github.io/dependence/)
|
|
11
|
+
- [Contributing](https://enorganic.github.io/dependence/contributing)
|
|
12
|
+
|
|
10
13
|
## Installation
|
|
11
14
|
|
|
12
15
|
You can install `dependence` with pip:
|
|
@@ -70,7 +73,7 @@ optional arguments:
|
|
|
70
73
|
|
|
71
74
|
Example:
|
|
72
75
|
|
|
73
|
-
```
|
|
76
|
+
```bash
|
|
74
77
|
dependence update -aen all setup.cfg pyproject.toml tox.ini
|
|
75
78
|
```
|
|
76
79
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dependence
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
4
4
|
Summary: Requirement (dependency) management for python projects
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://dependence.enorganic.org
|
|
6
6
|
Author-email: david@belais.me
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: requirements,dependencies
|
|
@@ -17,12 +17,15 @@ Requires-Dist: setuptools>63
|
|
|
17
17
|
# dependence
|
|
18
18
|
|
|
19
19
|
[](https://github.com/enorganic/dependence/actions/workflows/test.yml)
|
|
20
|
-
[](https://badge.fury.io/py/dependence)
|
|
21
21
|
|
|
22
22
|
This project provides a Command Line Interface and library for inspecting
|
|
23
23
|
and updating python project dependency versions in setup.cfg, pyproject.toml,
|
|
24
24
|
and requirements.txt files.
|
|
25
25
|
|
|
26
|
+
- [Documentation](https://enorganic.github.io/dependence/)
|
|
27
|
+
- [Contributing](https://enorganic.github.io/dependence/contributing)
|
|
28
|
+
|
|
26
29
|
## Installation
|
|
27
30
|
|
|
28
31
|
You can install `dependence` with pip:
|
|
@@ -86,7 +89,7 @@ optional arguments:
|
|
|
86
89
|
|
|
87
90
|
Example:
|
|
88
91
|
|
|
89
|
-
```
|
|
92
|
+
```bash
|
|
90
93
|
dependence update -aen all setup.cfg pyproject.toml tox.ini
|
|
91
94
|
```
|
|
92
95
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = dependence
|
|
3
|
-
version = 0.3.
|
|
3
|
+
version = 0.3.7
|
|
4
4
|
author_email = david@belais.me
|
|
5
5
|
description = Requirement (dependency) management for python projects
|
|
6
6
|
long_description = file: README.md
|
|
@@ -9,7 +9,7 @@ keywords =
|
|
|
9
9
|
requirements
|
|
10
10
|
dependencies
|
|
11
11
|
license = MIT
|
|
12
|
-
url = https://
|
|
12
|
+
url = https://dependence.enorganic.org
|
|
13
13
|
|
|
14
14
|
[options]
|
|
15
15
|
python_requires = ~=3.8
|
|
@@ -14,7 +14,7 @@ TEST_PROJECT_B: Path = (
|
|
|
14
14
|
Path(__file__).absolute().parent.joinpath("test_projects/test_project_b/")
|
|
15
15
|
)
|
|
16
16
|
REQUIREMENTS_A: Tuple[str, ...] = (
|
|
17
|
-
str(TEST_PROJECT_A.joinpath("
|
|
17
|
+
str(TEST_PROJECT_A.joinpath("frozen_requirements.txt")),
|
|
18
18
|
str(TEST_PROJECT_A.joinpath("setup.cfg")),
|
|
19
19
|
str(TEST_PROJECT_A.joinpath("pyproject.toml")),
|
|
20
20
|
)
|
|
@@ -176,7 +176,9 @@ def test_get_updated_requirements_txt() -> None:
|
|
|
176
176
|
"""
|
|
177
177
|
project: Path
|
|
178
178
|
for project in (TEST_PROJECT_A, TEST_PROJECT_B):
|
|
179
|
-
requirements_txt_path: Path = project.joinpath(
|
|
179
|
+
requirements_txt_path: Path = project.joinpath(
|
|
180
|
+
"frozen_requirements.txt"
|
|
181
|
+
)
|
|
180
182
|
with open(requirements_txt_path) as requirements_txt_io:
|
|
181
183
|
requirements_txt_data: str = requirements_txt_io.read()
|
|
182
184
|
updated_requirements_txt_data: str = get_updated_requirements_txt(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|