Issue 29069: Default PyPI URL in docs is not what is really in code (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/73255

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:41 admin set github: 73255
2016-12-27 12:16:11 berker.peksag set status: open -> closedtype: behaviorversions: + Python 3.5, Python 3.6nosy: + berker.peksagmessages: + resolution: fixedstage: resolved
2016-12-27 12:15:19 python-dev set nosy: + python-devmessages: +
2016-12-25 15:38:32 paka create