summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Withers <chris@withers.org>2019-05-02 10:14:10 +0100
committerChris Withers <chris@withers.org>2019-05-02 10:14:10 +0100
commit9c75ce975c2fb21be64cc3f5353060f5f61c4ef3 (patch)
tree4b45a6d801dda38e94c4e1d646c0ac61b48f156f
parent1916b1d7db02e2e2f6b9b51930ad72a8d4649c8b (diff)
downloadmock-9c75ce975c2fb21be64cc3f5353060f5f61c4ef3.tar.gz
- Add missing ``funcsigs`` dependency on Python 2.
-rw-r--r--CHANGELOG.rst3
-rw-r--r--setup.cfg4
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 1672271..a42de9e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,6 @@
+
+- Add missing ``funcsigs`` dependency on Python 2.
+
3.0.1
-----
diff --git a/setup.cfg b/setup.cfg
index 66d0fb2..7283b79 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -29,7 +29,9 @@ keyword =
testing, test, mock, mocking, unittest, patching, stubs, fakes, doubles
[options]
-install_requires=six
+install_requires =
+ six
+ funcsigs>=1;python_version<"3.3"
python_requires=>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
packages = mock