Skip to content

Commit

Permalink
Merge pull request #61 from brianbruggeman/master
Browse files Browse the repository at this point in the history
Removes typing dependency for Python3.5+
  • Loading branch information
syrusakbary committed Oct 4, 2018
2 parents fbd4f07 + 38008f5 commit e2dc8f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
# PEP-561: https://www.python.org/dev/peps/pep-0561/
package_data={"promise": ["py.typed"]},
extras_require={"test": tests_require},
install_requires=["typing>=3.6.4", "six"],
install_requires=[
"typing>=3.6.4; python_version < '3.5'",
"six"
],
tests_require=tests_require,
)

0 comments on commit e2dc8f0

Please sign in to comment.