requiresthat 2025.6.19.1__tar.gz → 2025.6.19.3__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.19.1
3
+ Version: 2025.6.19.3
4
4
  Summary: Support for requirements-assisted development
5
5
  Author-email: Ann T Ropea <bedhanger@gmx.de>
6
6
  License-Expression: MIT
@@ -40,7 +40,8 @@ for more.
40
40
 
41
41
  The ``that`` can be almost any valid Python statement which can be evaluated and whose veracity can
42
42
  be asserted, and the result thereof will decide whether or not the method fires/will be considered a
43
- success.
43
+ success. Then details should be observed `here
44
+ <https://gitlab.com/bedhanger/mwe/-/blob/master/python/requiresthat/src/requiresthat/_requires.py>`_.
44
45
 
45
46
  The parameter ``when`` decides if the condition is
46
47
  `a-priori, post-mortem, or before-and-after
@@ -31,7 +31,8 @@ for more.
31
31
 
32
32
  The ``that`` can be almost any valid Python statement which can be evaluated and whose veracity can
33
33
  be asserted, and the result thereof will decide whether or not the method fires/will be considered a
34
- success.
34
+ success. Then details should be observed `here
35
+ <https://gitlab.com/bedhanger/mwe/-/blob/master/python/requiresthat/src/requiresthat/_requires.py>`_.
35
36
 
36
37
  The parameter ``when`` decides if the condition is
37
38
  `a-priori, post-mortem, or before-and-after
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "requiresthat"
7
- version = "2025.6.19.1"
7
+ version = "2025.6.19.3"
8
8
  authors = [
9
9
  {name = "Ann T Ropea", email = "bedhanger@gmx.de"},
10
10
  ]
@@ -1,5 +1,6 @@
1
- """See the README file"""
2
-
1
+ """See the `README
2
+ <https://gitlab.com/bedhanger/mwe/-/blob/master/python/requiresthat/README.rst>`_ file
3
+ """
3
4
  from typing import Optional, Callable
4
5
  from functools import wraps
5
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: requiresthat
3
- Version: 2025.6.19.1
3
+ Version: 2025.6.19.3
4
4
  Summary: Support for requirements-assisted development
5
5
  Author-email: Ann T Ropea <bedhanger@gmx.de>
6
6
  License-Expression: MIT
@@ -40,7 +40,8 @@ for more.
40
40
 
41
41
  The ``that`` can be almost any valid Python statement which can be evaluated and whose veracity can
42
42
  be asserted, and the result thereof will decide whether or not the method fires/will be considered a
43
- success.
43
+ success. Then details should be observed `here
44
+ <https://gitlab.com/bedhanger/mwe/-/blob/master/python/requiresthat/src/requiresthat/_requires.py>`_.
44
45
 
45
46
  The parameter ``when`` decides if the condition is
46
47
  `a-priori, post-mortem, or before-and-after