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: Default PyPI URL in docs is not what is really in code
Type: behavior Stage: resolved
Components: Distutils, Documentation Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, dstufft, eric.araujo, paka, python-dev
Priority: normal Keywords: patch

Created on 2016-12-25 15:38 by paka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix-pypi-url.patch paka, 2016-12-25 15:38 review
Messages (3)
msg283997 - (view) Author: Pavlo Kapyshin (paka) * Date: 2016-12-25 15:38
Currently https://docs.python.org/3.7/distutils/packageindex.html#the-pypirc-file says that URL of the PyPI server defaults to https://www.python.org/pypi. That URL does not work.

Lib/distutils/config.py defines DEFAULT_REPOSITORY as https://upload.pypi.org/legacy/, so I'm attaching a patch for docs to update to current default.

I might be wrong about value that must be in docs, so guidance is appreciated :)
msg284087 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-12-27 12:15
New changeset c4cd7e00a640 by Berker Peksag in branch '3.5':
Issue #29069: Update the default URL of PyPI server
https://hg.python.org/cpython/rev/c4cd7e00a640

New changeset b1ccf713e8f8 by Berker Peksag in branch '3.6':
Issue #29069: Merge from 3.5
https://hg.python.org/cpython/rev/b1ccf713e8f8

New changeset b712e4818ff8 by Berker Peksag in branch 'default':
Issue #29069: Merge from 3.6
https://hg.python.org/cpython/rev/b712e4818ff8
msg284088 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-12-27 12:16
Thanks!
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73255
2016-12-27 12:16:11berker.peksagsetstatus: open -> closed

type: behavior
versions: + Python 3.5, Python 3.6
nosy: + berker.peksag

messages: + msg284088
resolution: fixed
stage: resolved
2016-12-27 12:15:19python-devsetnosy: + python-dev
messages: + msg284087
2016-12-25 15:38:32pakacreate