From: Romuald Brunet Date: Tue, 11 Dec 2018 13:50:18 +0000 (+0100) Subject: Fix missing test dependency for python 2.7 / 3.4 X-Git-Tag: v2.0.0rc1~388^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8eb23828604dc0837cb10b8af83de2be3d24fb2f;p=thirdparty%2Fdnspython.git Fix missing test dependency for python 2.7 / 3.4 --- diff --git a/setup.py b/setup.py index d75614d0..71e9f505 100755 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ direct manipulation of DNS zones, messages, names, and records.""", 'python_requires': '>=3.4', 'test_suite': 'tests', 'provides': ['dns'], + 'tests_require': ['typing ; python_version<"3.5"'], 'extras_require': { 'IDNA': ['idna>=2.1'], 'DNSSEC': ['pycryptodome', 'ecdsa>=0.13'],