-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Closed
Description
Tests in Python2 are now failing with error
IOError: [Errno socket error] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:727)
see e.g., https://travis-ci.org/pytorch/vision/jobs/573261632
This is due to a change in github it seems, and has been worked around in PyTorch in pytorch/pytorch#25042
A few possible solutions:
- change the download link in the test to use a different domain than github
- skip the test for Python2 for now
- use the unverified context trick from Temporarily fix hub SSL cert issue pytorch#25042, but this can lead to some vulnerabilities
I'd vote for trying out option 2 for now.