From 9d937e09fc7473b88d9c18df4a6cd73cad8dd7de Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Tue, 27 Oct 2020 22:08:07 +0100 Subject: [PATCH] typing is a Py35 backport; don't depend on it if you're above py35 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9bb8ec5..63442472 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def read(file_name): keywords='Exchange EWS autodiscover', install_requires=['requests>=2.7', 'requests_ntlm>=0.2.0', 'dnspython>=1.14.0', 'pytz', 'lxml>3.0', 'cached_property', 'future', 'six', 'tzlocal', 'python-dateutil', 'pygments', 'defusedxml', - 'isodate', 'requests_kerberos', 'typing'], + 'isodate', 'requests_kerberos', "typing; python_version < '3.5'"], packages=['exchangelib'], tests_require=['PyYAML', 'requests_mock', 'psutil'], python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",