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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a99be7af4a637e2cba9ec3aa247086a914132b1;p=thirdparty%2Fdnspython.git Fix missing test dependency for python 2.7 / 3.4 --- diff --git a/setup.py b/setup.py index 743d43c8..520294ae 100755 --- a/setup.py +++ b/setup.py @@ -73,6 +73,7 @@ direct manipulation of DNS zones, messages, names, and records.""", 'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', 'test_suite': 'tests', 'provides': ['dns'], + 'tests_require': ['typing ; python_version<"3.5"'], 'extras_require': { 'IDNA': ['idna>=2.1'], 'DNSSEC': ['pycryptodome', 'ecdsa>=0.13'],