dependence 0.3.5__py3-none-any.whl → 0.3.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dependence/utilities.py +5 -2
- {dependence-0.3.5.dist-info → dependence-0.3.7.dist-info}/METADATA +7 -4
- {dependence-0.3.5.dist-info → dependence-0.3.7.dist-info}/RECORD +6 -6
- {dependence-0.3.5.dist-info → dependence-0.3.7.dist-info}/WHEEL +1 -1
- {dependence-0.3.5.dist-info → dependence-0.3.7.dist-info}/entry_points.txt +0 -0
- {dependence-0.3.5.dist-info → dependence-0.3.7.dist-info}/top_level.txt +0 -0
dependence/utilities.py
CHANGED
|
@@ -746,9 +746,12 @@ def _install_requirement_string(
|
|
|
746
746
|
command += (
|
|
747
747
|
"-e",
|
|
748
748
|
requirement_string,
|
|
749
|
-
"--config-settings",
|
|
750
|
-
"editable_mode=compat",
|
|
751
749
|
)
|
|
750
|
+
if sys.version_info < (3, 9):
|
|
751
|
+
command += (
|
|
752
|
+
"--config-settings",
|
|
753
|
+
"editable_mode=compat",
|
|
754
|
+
)
|
|
752
755
|
else:
|
|
753
756
|
command += (requirement_string,)
|
|
754
757
|
try:
|
|
@@ -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
|
|
|
@@ -4,9 +4,9 @@ dependence/_utilities.py,sha256=t4crBNYlw2kGiHNjoY1Zx1H_LrY7OjrXT4RLDeOYs2o,4876
|
|
|
4
4
|
dependence/freeze.py,sha256=6sP-z-BIwOzF7JgnUD134gu4711-LY-zaQ26yPdq5JE,13298
|
|
5
5
|
dependence/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
dependence/update.py,sha256=FRl0FsdAIfjWacw1cVS8Fh024ZN7hK3ZHJiQpsRinfQ,16571
|
|
7
|
-
dependence/utilities.py,sha256=
|
|
8
|
-
dependence-0.3.
|
|
9
|
-
dependence-0.3.
|
|
10
|
-
dependence-0.3.
|
|
11
|
-
dependence-0.3.
|
|
12
|
-
dependence-0.3.
|
|
7
|
+
dependence/utilities.py,sha256=f41catUGTKuvU_MkQF_Hbk4IkVgMKNQr-DWhpaSktjQ,33756
|
|
8
|
+
dependence-0.3.7.dist-info/METADATA,sha256=buCqRXjuh_03RBm6ePGfMF6oyQWP2amg0bC_RXYwakM,5636
|
|
9
|
+
dependence-0.3.7.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
10
|
+
dependence-0.3.7.dist-info/entry_points.txt,sha256=NStO_B0D81ObVYr9zDs6LCy0whm0a8KCiiFHMmTwOVE,56
|
|
11
|
+
dependence-0.3.7.dist-info/top_level.txt,sha256=5rooMYWKlAUelE8hjGegbf4uuAIqNuRlhlpA7oc7Qro,11
|
|
12
|
+
dependence-0.3.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|