Skip to content

Commit 093dfbc

Browse files
committed
v1.3.12
-------- 2022-05-23: update requirements.txt
1 parent 715a96f commit 093dfbc

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
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.11 as of 2022-05-23 see `Changelog`_
5+
Version v1.3.12 as of 2022-05-23 see `Changelog`_
66

77

88
.. include:: ./badges.rst

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.12
5+
--------
6+
2022-05-23: update requirements.txt
7+
48
v1.3.11
59
--------
610
2022-05-23:

README.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

5-
Version v1.3.11 as of 2022-05-23 see `Changelog`_
5+
Version v1.3.12 as of 2022-05-23 see `Changelog`_
66

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

@@ -826,9 +826,7 @@ following modules will be automatically installed :
826826
827827
# class decorators are failing on windows with dill 0.3.5, 0.3.5.1
828828
dill>0.3.0,<0.3.5;sys_platform=="win32"
829-
dill;sys_platform=="linux"
830-
dill;sys_platform=="darwin"
831-
829+
dill;sys_platform!="win32"
832830
multiprocess
833831
wrapt
834832
@@ -853,6 +851,10 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
853851
Changelog
854852
=========
855853

854+
v1.3.12
855+
--------
856+
2022-05-23: update requirements.txt
857+
856858
v1.3.11
857859
--------
858860
2022-05-23:

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.11"
87+
setup_kwargs["version"] = "v1.3.12"
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

Lines changed: 2 additions & 2 deletions
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.11"
5+
version = "v1.3.12"
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.11
20+
Version : v1.3.12
2121
Url : https://github.com/bitranox/wrapt_timeout_decorator
2222
Author : Robert Nowotny
2323
Email : [email protected]"""

0 commit comments

Comments
 (0)