-
Notifications
You must be signed in to change notification settings - Fork 457
New issue
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
typing_extensions not available in Python 3.8 #421
Comments
This part of the documentation seems inaccurate. SSLyze uses specific types introduced in Python 3.8 (Literal and TypedDict) that can only be used in 3.7 via the typing_extensions module:
These types are needed to make the results nicer and easier to process, both for the Python API and the JSON output. |
Sslyze doesn't run under python 3.8.2 because Using docker:
|
Fixed in 3.0.1. |
The following line is incorrect:
https://github.com/nabla-c0d3/sslyze/blob/master/setup.py#L95
it should be:
typing_extensions does not support python3.7:
The text was updated successfully, but these errors were encountered: