syrusakbary / promise

Ultra-performant Promise implementation in Python
MIT License
362 stars 76 forks source link

Promise should not install `typing` for python 3.5+ #60

Open brianbruggeman opened 6 years ago

brianbruggeman commented 6 years ago

The pypi package for typing is a backport and not necessarily representative of the typing standard library for a given version of Python. For versions above Python 3.4, typing should not be installed as this can cause problems for Pythons 3.5+.

See: https://pypi.org/project/typing/

Code: https://github.com/syrusakbary/promise/blob/master/setup.py#L53