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 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.5
3
+ Version: 0.3.7
4
4
  Summary: Requirement (dependency) management for python projects
5
- Home-page: https://github.com/enorganic/dependence
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
  [![test](https://github.com/enorganic/dependence/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/enorganic/dependence/actions/workflows/test.yml)
20
- [![distribute](https://github.com/enorganic/dependence/actions/workflows/distribute.yml/badge.svg?branch=main)](https://github.com/enorganic/dependence/actions/workflows/distribute.yml)
20
+ [![PyPI version](https://badge.fury.io/py/dependence.svg?icon=si%3Apython)](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
- ```shell script
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=Y7WML1O6X2IhDyByEfPWIPkde-d-LLZEqQtgV9igxe8,33671
8
- dependence-0.3.5.dist-info/METADATA,sha256=2unwE3MUd0jOd3kASC2wwnC0B9jkNK7HcarrVPYUVsA,5594
9
- dependence-0.3.5.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
10
- dependence-0.3.5.dist-info/entry_points.txt,sha256=NStO_B0D81ObVYr9zDs6LCy0whm0a8KCiiFHMmTwOVE,56
11
- dependence-0.3.5.dist-info/top_level.txt,sha256=5rooMYWKlAUelE8hjGegbf4uuAIqNuRlhlpA7oc7Qro,11
12
- dependence-0.3.5.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5