summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 13:33:31 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 13:33:31 +0200
commita5bce82691f6b2cac616091bd02b788cf2bb9be5 (patch)
treed7596d470350ea7ae73834ebd49d9ca1cea4428d
parentceca3bb8142b6a753846e4e2cd166d2df8453eed (diff)
downloadpython-decorator-git-a5bce82691f6b2cac616091bd02b788cf2bb9be5.tar.gz
Fixed python_requires in setup.py
-rw-r--r--CHANGES.md2
-rw-r--r--docs/documentation.md4
-rw-r--r--src/decorator.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 5181ebc..20a78fa 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -3,7 +3,7 @@ HISTORY
## unreleased
-## 5.0.0 (2020-04-02)
+## 5.0.0 (2021-04-02)
Dropped support for Python < 3.5 with a substantial simplification of
the code base. Ported CI from Travis to GitHub.
diff --git a/docs/documentation.md b/docs/documentation.md
index 150a10c..cf6ad01 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -4,9 +4,9 @@ Decorators for Humans
|Author | Michele Simionato|
|---|---|
|E-mail | michele.simionato@gmail.com|
-|Version| 5.0.0 (2021-04-02)|
+|Version| 4.4.2 (2021-04-02)|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9|
-|Download page| http://pypi.python.org/pypi/decorator/5.0.0|
+|Download page| http://pypi.python.org/pypi/decorator/4.4.2|
|Installation| ``pip install decorator``|
|License | BSD license|
diff --git a/src/decorator.py b/src/decorator.py
index fa1303e..e7f5cf4 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -40,7 +40,7 @@ import itertools
from contextlib import _GeneratorContextManager
from inspect import getfullargspec, iscoroutinefunction, isgeneratorfunction
-__version__ = '5.0.0'
+__version__ = '5.0.1'
DEF = re.compile(r'\s*def\s*([_\w][_\w\d]*)\s*\(')
POS = inspect.Parameter.POSITIONAL_OR_KEYWORD