Skip to content

Commit 31a8b84

Browse files
committed
v1.3.8
-------- 2022-03-29: remedy mypy Untyped decorator makes function "cli_info" untyped
1 parent 19912f5 commit 31a8b84

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

.docs/README_template.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

5-
Version v1.3.6 as of 2022-03-25 see `Changelog`_
5+
Version v1.3.8 as of 2022-03-29 see `Changelog`_
66

77

88
.. include:: ./badges.rst

CHANGES.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v1.3.8
5+
--------
6+
2022-03-29: remedy mypy Untyped decorator makes function "cli_info" untyped
7+
48
v1.3.7
59
--------
610
2022-03-28: extend time on test_timeout_decorator_arg - github macos seems to be slow, so sometimes that test fails

README.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

5-
Version v1.3.6 as of 2022-03-25 see `Changelog`_
5+
Version v1.3.8 as of 2022-03-29 see `Changelog`_
66

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

@@ -844,6 +844,14 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
844844
Changelog
845845
=========
846846

847+
v1.3.8
848+
--------
849+
2022-03-29: remedy mypy Untyped decorator makes function "cli_info" untyped
850+
851+
v1.3.7
852+
--------
853+
2022-03-28: extend time on test_timeout_decorator_arg - github macos seems to be slow, so sometimes that test fails
854+
847855
v1.3.6
848856
--------
849857
2022-03-25: fix github actions windows test

setup.py

+1-1
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.6"
87+
setup_kwargs["version"] = "v1.3.8"
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"]}

wrapt_timeout_decorator/__init__conf__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "wrapt_timeout_decorator"
44
title = "The better timout decorator"
5-
version = "v1.3.6"
5+
version = "v1.3.8"
66
url = "https://github.com/bitranox/wrapt_timeout_decorator"
77
author = "Robert Nowotny"
88
author_email = "[email protected]"
@@ -17,7 +17,7 @@ def print_info() -> None:
1717
1818
The better timout decorator
1919
20-
Version : v1.3.6
20+
Version : v1.3.8
2121
Url : https://github.com/bitranox/wrapt_timeout_decorator
2222
Author : Robert Nowotny
2323
Email : [email protected]"""

wrapt_timeout_decorator/wrapt_timeout_decorator_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def cli_main(traceback: Optional[bool] = None) -> None:
4040
cli_exit_tools.config.traceback = traceback
4141

4242

43-
@cli_main.command("info", context_settings=CLICK_CONTEXT_SETTINGS)
43+
@cli_main.command("info", context_settings=CLICK_CONTEXT_SETTINGS) # type: ignore
4444
def cli_info() -> None:
4545
"""get program informations"""
4646
info()

0 commit comments

Comments
 (0)