From 7137c0ec9109f1b5582e9150701dcaeb18135eab Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Thu, 24 Jan 2019 14:57:29 +0100 Subject: [PATCH] Tagged 4.3.2 --- CHANGES.md | 2 ++ Makefile | 2 +- docs/tests.documentation.rst | 4 ++-- src/decorator.py | 2 +- 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 itertools import collections -__version__ = '4.3.1' +__version__ = '4.3.2' if sys.version >= '3': from inspect import getfullargspec