This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: https://www.pypi-mirrors.org/ error 503
Type: Stage: resolved
Components: Versions:
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: Luc Zimmermann, brett.cannon, ned.deily, vstinner
Priority: normal Keywords:

Created on 2017-06-23 14:24 by Luc Zimmermann, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (5)
msg296721 - (view) Author: Luc Zimmermann (Luc Zimmermann) Date: 2017-06-23 14:24
is that linked with the certificate error on pypi ? 

you redirect http request to https, but you still listen 80 and not 443 ?
msg296722 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-23 14:43
http://www.pypi-mirrors.org/ (clear text) works and redirects to https://www.pypi-mirrors.org/ (TLS) which fails with HTTP error 503:

503 Service Unavailable
No server is available to handle this request.
msg296723 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-06-23 14:44
See also issue #30739:
  Could not fetch URL https://pypi.python.org/simple/PyJWT/: connection error: [SSL: CERTIFICATE_VERIFY_FAILED] unknown error (_ssl.c)
msg296727 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2017-06-23 17:07
So is this a bug in Python or a problem with the website? If it's the former then the title is misleading and we should clarify it, and if it's the latter this should be closed as "third party".
msg297460 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2017-07-01 00:37
This doesn't appear to be a Python issue.  If necessary, suggest follow up with either pip or the PyPA packaging-problems issue tracker:

https://github.com/pypa/packaging-problems/issues
History
Date User Action Args
2022-04-11 14:58:48adminsetgithub: 74926
2017-07-01 00:37:45ned.deilysetstatus: open -> closed

type: security ->

nosy: + ned.deily
messages: + msg297460
resolution: third party
stage: resolved
2017-06-23 17:07:15brett.cannonsetnosy: + brett.cannon
messages: + msg296727
2017-06-23 14:44:41vstinnersetmessages: + msg296723
2017-06-23 14:43:38vstinnersetnosy: + vstinner
messages: + msg296722
2017-06-23 14:24:00Luc Zimmermanncreate