Skip to content

Commit e2dc8f0

Browse files
authored
Merge pull request #61 from brianbruggeman/master
Removes typing dependency for Python3.5+
2 parents fbd4f07 + 38008f5 commit e2dc8f0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
# PEP-561: https://www.python.org/dev/peps/pep-0561/
5454
package_data={"promise": ["py.typed"]},
5555
extras_require={"test": tests_require},
56-
install_requires=["typing>=3.6.4", "six"],
56+
install_requires=[
57+
"typing>=3.6.4; python_version < '3.5'",
58+
"six"
59+
],
5760
tests_require=tests_require,
5861
)

0 commit comments

Comments
 (0)