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
pip 8.1.2 installs ndg_httpsclient[subjectAltName_support], but emits ndg-httpsclient 0.4.2 does not provide the extra 'subjectAltName_support' which is incorrect.
What I've run:
$ sudo python -m pip install 'ndg_httpsclient[subjectAltName_support]'
Collecting ndg-httpsclient[subjectaltname_support]
Using cached ndg_httpsclient-0.4.2.tar.gz
Requirement already satisfied (use --upgrade to upgrade): PyOpenSSL in /usr/lib/python2.7/site-packages (from ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): pyasn1 in /usr/lib/python2.7/site-packages (from ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): cryptography>=1.3 in /usr/lib64/python2.7/site-packages (from PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): six>=1.5.2 in /usr/lib/python2.7/site-packages (from PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): idna>=2.0 in /usr/lib/python2.7/site-packages (from cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): setuptools>=11.3 in /usr/lib/python2.7/site-packages (from cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): enum34 in /usr/lib/python2.7/site-packages (from cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): ipaddress in /usr/lib/python2.7/site-packages (from cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): cffi>=1.4.1 in /usr/lib64/python2.7/site-packages (from cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Requirement already satisfied (use --upgrade to upgrade): pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.4.1->cryptography>=1.3->PyOpenSSL->ndg-httpsclient[subjectaltname_support])
Installing collected packages: ndg-httpsclient
Running setup.py install for ndg-httpsclient ... done
Successfully installed ndg-httpsclient-0.4.2
You are using pip version 8.1.1, however version 8.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
After upgrading to pip 8.1.2
$ sudo python -m pip install 'ndg_httpsclient[subjectAltName_support]'
Collecting ndg_httpsclient[subjectAltName_support]
Using cached ndg_httpsclient-0.4.2.tar.gz
ndg-httpsclient 0.4.2 does not provide the extra 'subjectAltName_support'
Requirement already satisfied (use --upgrade to upgrade): PyOpenSSL in /usr/lib/python2.7/site-packages (from ndg_httpsclient[subjectAltName_support])
...
The text was updated successfully, but these errors were encountered:
pyasn1 is a dependency of cryptography which pyOpenSSL has used since v0.14. I think the simplest solution is to remove the extras_requires and add pyasn1 as a core dependency to ndg-httpsclient.
Could you check if pip install ndg_httpsclient[subjectaltname_support] works (note the lowercase) ?
If yes, this is a duplicate of #3810 which should be easy to fix.
Description:
pip 8.1.2 installs
ndg_httpsclient[subjectAltName_support]
, but emitsndg-httpsclient 0.4.2 does not provide the extra 'subjectAltName_support'
which is incorrect.What I've run:
After upgrading to pip 8.1.2
The text was updated successfully, but these errors were encountered: