requiresthat 2025.6.23.1__tar.gz → 2025.6.24.0__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.
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/PKG-INFO +6 -3
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/README.rst +5 -2
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/pyproject.toml +1 -1
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/PKG-INFO +6 -3
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/setup.cfg +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat/__init__.py +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat/_exceptions.py +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat/_requires.py +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat/_when.py +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/SOURCES.txt +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/dependency_links.txt +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/top_level.txt +0 -0
- {requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/tests/test_requiresthat.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: requiresthat
|
3
|
-
Version: 2025.6.
|
3
|
+
Version: 2025.6.24.0
|
4
4
|
Summary: Support for requirements-assisted development
|
5
5
|
Author-email: Ann T Ropea <bedhanger@gmx.de>
|
6
6
|
License-Expression: MIT
|
@@ -62,7 +62,7 @@ Installation
|
|
62
62
|
|
63
63
|
.. code-block:: bash
|
64
64
|
|
65
|
-
pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
65
|
+
python -m pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
66
66
|
|
67
67
|
If you want to cook it on your own, do this:
|
68
68
|
|
@@ -70,8 +70,11 @@ If you want to cook it on your own, do this:
|
|
70
70
|
|
71
71
|
git clone git@gitlab.com:bedhanger/mwe.git
|
72
72
|
cd mwe/python/requiresthat
|
73
|
+
python -m venv --system-site-packages venv
|
74
|
+
source venv/bin/activate
|
73
75
|
python -m build
|
74
|
-
pip install .
|
76
|
+
python -m pip install .
|
77
|
+
deactivate
|
75
78
|
|
76
79
|
It is recommended to carry out the build and install steps in a `venv
|
77
80
|
<https://docs.python.org/3/library/venv.html>`_.
|
@@ -53,7 +53,7 @@ Installation
|
|
53
53
|
|
54
54
|
.. code-block:: bash
|
55
55
|
|
56
|
-
pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
56
|
+
python -m pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
57
57
|
|
58
58
|
If you want to cook it on your own, do this:
|
59
59
|
|
@@ -61,8 +61,11 @@ If you want to cook it on your own, do this:
|
|
61
61
|
|
62
62
|
git clone git@gitlab.com:bedhanger/mwe.git
|
63
63
|
cd mwe/python/requiresthat
|
64
|
+
python -m venv --system-site-packages venv
|
65
|
+
source venv/bin/activate
|
64
66
|
python -m build
|
65
|
-
pip install .
|
67
|
+
python -m pip install .
|
68
|
+
deactivate
|
66
69
|
|
67
70
|
It is recommended to carry out the build and install steps in a `venv
|
68
71
|
<https://docs.python.org/3/library/venv.html>`_.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: requiresthat
|
3
|
-
Version: 2025.6.
|
3
|
+
Version: 2025.6.24.0
|
4
4
|
Summary: Support for requirements-assisted development
|
5
5
|
Author-email: Ann T Ropea <bedhanger@gmx.de>
|
6
6
|
License-Expression: MIT
|
@@ -62,7 +62,7 @@ Installation
|
|
62
62
|
|
63
63
|
.. code-block:: bash
|
64
64
|
|
65
|
-
pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
65
|
+
python -m pip install --index-url=https://test.pypi.org/simple/ requiresthat
|
66
66
|
|
67
67
|
If you want to cook it on your own, do this:
|
68
68
|
|
@@ -70,8 +70,11 @@ If you want to cook it on your own, do this:
|
|
70
70
|
|
71
71
|
git clone git@gitlab.com:bedhanger/mwe.git
|
72
72
|
cd mwe/python/requiresthat
|
73
|
+
python -m venv --system-site-packages venv
|
74
|
+
source venv/bin/activate
|
73
75
|
python -m build
|
74
|
-
pip install .
|
76
|
+
python -m pip install .
|
77
|
+
deactivate
|
75
78
|
|
76
79
|
It is recommended to carry out the build and install steps in a `venv
|
77
80
|
<https://docs.python.org/3/library/venv.html>`_.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/dependency_links.txt
RENAMED
File without changes
|
{requiresthat-2025.6.23.1 → requiresthat-2025.6.24.0}/src/requiresthat.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|