We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The typing module is available in Python 3.5 and up, so doesn't need to be installed from PyPI on those versions.
typing
I believe the following should work:
install_requires=[ 'typing; python_version < "3.5"', ... ],
(Similar to: https://github.com/django/channels/blob/db1b3ba951ef2c3cff6e91ed94d4115d479c0d4f/testproject/setup.py#L10)
The text was updated successfully, but these errors were encountered:
Fixed by #61.
Sorry, something went wrong.
No branches or pull requests
The
typing
module is available in Python 3.5 and up, so doesn't need to be installed from PyPI on those versions.I believe the following should work:
(Similar to: https://github.com/django/channels/blob/db1b3ba951ef2c3cff6e91ed94d4115d479c0d4f/testproject/setup.py#L10)
The text was updated successfully, but these errors were encountered: