Skip to content

Commit

Permalink
Tagged 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
micheles committed Jan 24, 2019
1 parent 5904141 commit 7137c0e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ HISTORY

## unreleased

## 4.3.2 (2019-01-24)

Accepted a patch from Sylvain Marie (https://github.com/smarie): now the
decorator module can decorate generator functions by preserving their
being generator functions. Set `python_requires='>=2.6, !=3.0.*, !=3.1.*'`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ html: /tmp/tests.documentation.rst
sphinx-build docs docs/_build

upload: README.rst
python3 setup.py sdist bdist_wheel upload
python setup.py sdist bdist_wheel upload
4 changes: 2 additions & 2 deletions docs/tests.documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ The ``decorator`` module

:Author: Michele Simionato
:E-mail: [email protected]
:Version: 4.3.1 (2018-08-04)
:Version: 4.3.2 (2019-01-24)
:Supports: Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7
:Download page: http://pypi.python.org/pypi/decorator/4.3.1
:Download page: http://pypi.python.org/pypi/decorator/4.3.2
:Installation: ``pip install decorator``
:License: BSD license

Expand Down
2 changes: 1 addition & 1 deletion src/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import itertools
import collections

__version__ = '4.3.1'
__version__ = '4.3.2'

if sys.version >= '3':
from inspect import getfullargspec
Expand Down

0 comments on commit 7137c0e

Please sign in to comment.