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.
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dependence
3
- Version: 0.3.6
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
 
@@ -1,12 +1,15 @@
1
1
  # dependence
2
2
 
3
3
  [![test](https://github.com/enorganic/dependence/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/enorganic/dependence/actions/workflows/test.yml)
4
- [![distribute](https://github.com/enorganic/dependence/actions/workflows/distribute.yml/badge.svg?branch=main)](https://github.com/enorganic/dependence/actions/workflows/distribute.yml)
4
+ [![PyPI version](https://badge.fury.io/py/dependence.svg?icon=si%3Apython)](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
- ```shell script
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.6
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
 
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = dependence
3
- version = 0.3.6
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://github.com/enorganic/dependence
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("requirements.txt")),
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("requirements.txt")
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