Skip to content

Commit 09d319c

Browse files
arthurdarcetsaghul
authored andcommitted
fix #57: only depend on typing for python < 3.7
1 parent f4e4533 commit 09d319c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_version():
1818
url = "http://github.com/saghul/aiodns",
1919
description = "Simple DNS resolver for asyncio",
2020
long_description = codecs.open("README.rst", encoding="utf-8").read(),
21-
install_requires = ['pycares>=3.0.0b2', 'typing'],
21+
install_requires = ['pycares>=3.0.0b2', 'typing; python_version<"3.7"'],
2222
packages = ['aiodns'],
2323
platforms = ["POSIX", "Microsoft Windows"],
2424
classifiers = [

0 commit comments

Comments
 (0)