You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SInce the TLS 1.0/1.1 turndown, easy_install doesn't work on older macOS, because the builtin libraries don't support SSL. For the most part, we just use latest pip instead, and things work fine. But when installing a package with setup_requires from source (e.g. pip install git+git://github.com/pycqa/flake8.git@master), we run into trouble even on latest pip/setuptools, because pip runs setup.py install, which in turn runs easy_install, which fails. If easy_install is completely deprecated, setuptools should call out to pip instead; or easy_install do what pip does to make TLS 1.2 work.