Skip to content

Commit

Permalink
Version 1.2.8 - import multiprocess as multiprocessing might break pa…
Browse files Browse the repository at this point in the history
…ckages - so import as multiprocess
  • Loading branch information
bitranox committed Apr 23, 2019
1 parent 193bfa9 commit c0ca152
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.2.8
-----
2019-04-23: import multiprocess as multiprocess, not as multiprocessing - that might brake other packages

1.2.0
------
2019-04-09: initial PyPi release
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name='wrapt_timeout_decorator',
version='1.2.7',
version='1.2.8',
description='Timeout decorator',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down
2 changes: 1 addition & 1 deletion wrapt_timeout_decorator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from .wrapt_timeout_decorator import timeout
from .wrap_helper import detect_unpickable_objects

__version__ = '1.2.7'
__version__ = '1.2.8'
__title__ = 'wrapt_timeout_decorator'
__name__ = 'wrapt_timeout_decorator'

0 comments on commit c0ca152

Please sign in to comment.