requiresthat 2025.6.23.1__tar.gz → 2025.6.24.2__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: requiresthat
3
- Version: 2025.6.23.1
3
+ Version: 2025.6.24.2
4
4
  Summary: Support for requirements-assisted development
5
5
  Author-email: Ann T Ropea <bedhanger@gmx.de>
6
6
  License-Expression: MIT
@@ -62,16 +62,30 @@ 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
 
69
69
  .. code-block:: bash
70
70
 
71
- git clone git@gitlab.com:bedhanger/mwe.git
71
+ git clone https://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
- <https://docs.python.org/3/library/venv.html>`_.
80
+ <https://docs.python.org/3/library/venv.html>`_. This is shown in an exemplary manner in the
81
+ snipped above that deals with building from scratch.
82
+
83
+ Running the tests
84
+ -----------------
85
+
86
+ Build the package from scratch like shown above, but do not leave the ``venv`` (i.e., don't call
87
+ ``deactivate``). Then
88
+
89
+ .. code-block:: bash
90
+
91
+ python -m pytest --verbose
@@ -53,16 +53,30 @@ 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
 
60
60
  .. code-block:: bash
61
61
 
62
- git clone git@gitlab.com:bedhanger/mwe.git
62
+ git clone https://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
- <https://docs.python.org/3/library/venv.html>`_.
71
+ <https://docs.python.org/3/library/venv.html>`_. This is shown in an exemplary manner in the
72
+ snipped above that deals with building from scratch.
73
+
74
+ Running the tests
75
+ -----------------
76
+
77
+ Build the package from scratch like shown above, but do not leave the ``venv`` (i.e., don't call
78
+ ``deactivate``). Then
79
+
80
+ .. code-block:: bash
81
+
82
+ python -m pytest --verbose
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "requiresthat"
7
- version = "2025.6.23.1"
7
+ version = "2025.6.24.2"
8
8
  authors = [
9
9
  {name = "Ann T Ropea", email = "bedhanger@gmx.de"},
10
10
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: requiresthat
3
- Version: 2025.6.23.1
3
+ Version: 2025.6.24.2
4
4
  Summary: Support for requirements-assisted development
5
5
  Author-email: Ann T Ropea <bedhanger@gmx.de>
6
6
  License-Expression: MIT
@@ -62,16 +62,30 @@ 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
 
69
69
  .. code-block:: bash
70
70
 
71
- git clone git@gitlab.com:bedhanger/mwe.git
71
+ git clone https://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
- <https://docs.python.org/3/library/venv.html>`_.
80
+ <https://docs.python.org/3/library/venv.html>`_. This is shown in an exemplary manner in the
81
+ snipped above that deals with building from scratch.
82
+
83
+ Running the tests
84
+ -----------------
85
+
86
+ Build the package from scratch like shown above, but do not leave the ``venv`` (i.e., don't call
87
+ ``deactivate``). Then
88
+
89
+ .. code-block:: bash
90
+
91
+ python -m pytest --verbose