Skip to content

Commit 342f6dd

Browse files
committed
v1.3.9
-------- 2022-04-26: preserve Signature of the decorator
1 parent 31a8b84 commit 342f6dd

17 files changed

+48
-483
lines changed

.docs/README_template.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

5-
Version v1.3.8 as of 2022-03-29 see `Changelog`_
5+
Version v1.3.9 as of 2022-04-26 see `Changelog`_
66

77

88
.. include:: ./badges.rst

.docs/README_template_backup.rst

Lines changed: 0 additions & 158 deletions
This file was deleted.

.docs/usage.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,10 @@
1313
.. include:: ./parts/detect_pickle_errors.rst
1414
.. include:: ./parts/logging.rst
1515
.. include:: ./parts/hard_timeout.rst
16+
17+
18+
MYPY Testing
19+
------------
20+
for local MYPY Testing please make sure that the stub file "wrapt.pyi" is in in the MYPY Path (once!), in order to preserve the decorated function signature.
21+
22+

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v1.3.9
5+
--------
6+
2022-04-26: preserve Signature of the decorator
7+
48
v1.3.8
59
--------
610
2022-03-29: remedy mypy Untyped decorator makes function "cli_info" untyped

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

5-
Version v1.3.8 as of 2022-03-29 see `Changelog`_
5+
Version v1.3.9 as of 2022-04-26 see `Changelog`_
66

77
|build_badge| |license| |jupyter| |pypi| |pypi-downloads| |black|
88

@@ -722,6 +722,10 @@ the process might never run and will always timeout during spawning.
722722

723723
** well, more or less exactly - it still takes some short time to return from the spawned process - so be extra cautious on very short timeouts !
724724

725+
MYPY Testing
726+
------------
727+
for local MYPY Testing please make sure that the stub file "wrapt.pyi" is in in the MYPY Path (once!), in order to preserve the decorated function signature.
728+
725729
Usage from Commandline
726730
------------------------
727731

@@ -844,6 +848,10 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
844848
Changelog
845849
=========
846850

851+
v1.3.9
852+
--------
853+
2022-04-26: preserve Signature of the decorator
854+
847855
v1.3.8
848856
--------
849857
2022-03-29: remedy mypy Untyped decorator makes function "cli_info" untyped

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_line_data(line: str) -> str:
8484

8585
setup_kwargs: Dict[str, Any] = dict()
8686
setup_kwargs["name"] = "wrapt_timeout_decorator"
87-
setup_kwargs["version"] = "v1.3.8"
87+
setup_kwargs["version"] = "v1.3.9"
8888
setup_kwargs["url"] = "https://github.com/bitranox/wrapt_timeout_decorator"
8989
setup_kwargs["packages"] = find_packages()
9090
setup_kwargs["package_data"] = {"wrapt_timeout_decorator": ["py.typed", "*.pyi", "__init__.pyi"]}

0 commit comments

Comments
 (0)