summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2019-01-24 14:57:29 +0100
committerMichele Simionato <michele.simionato@gmail.com>2019-01-24 14:57:29 +0100
commit7137c0ec9109f1b5582e9150701dcaeb18135eab (patch)
treee90c413bf7535ac33cfa955da6ef91cb3ac4d39f
parent5904141797f9a3412d5d96cab07831325c6a4270 (diff)
downloadpython-decorator-git-7137c0ec9109f1b5582e9150701dcaeb18135eab.tar.gz
Tagged 4.3.24.3.2
-rw-r--r--CHANGES.md2
-rw-r--r--Makefile2
-rw-r--r--docs/tests.documentation.rst4
-rw-r--r--src/decorator.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index f610c08..56ebfb1 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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.*'`
diff --git a/Makefile b/Makefile
index cbcf307..6d2cee1 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/docs/tests.documentation.rst b/docs/tests.documentation.rst
index e17ae9f..c375ea5 100644
--- a/docs/tests.documentation.rst
+++ b/docs/tests.documentation.rst
@@ -3,9 +3,9 @@ The ``decorator`` module
:Author: Michele Simionato
:E-mail: michele.simionato@gmail.com
-: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
diff --git a/src/decorator.py b/src/decorator.py
index 1b5155f..567030e 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -40,7 +40,7 @@ import operator
import itertools
import collections
-__version__ = '4.3.1'
+__version__ = '4.3.2'
if sys.version >= '3':
from inspect import getfullargspec