diff options
| author | Brett Cannon <brett@python.org> | 2018-04-17 15:19:29 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-04-17 20:56:33 -0400 |
| commit | b98fa241ddbb22507cb63886f697d25f43197cba (patch) | |
| tree | c77c4ae32e46ff4e30bac0c6e11546f4ab2241fd /docs/internals | |
| parent | 3619d322098ae3573707adae22cb0c086e948210 (diff) | |
[2.0.x] Fixed #29334 -- Updated pypi.python.org URLs to pypi.org.
Backport of 64b74804c537b12d4cca64f7cb529c0478b4c4d9 from master
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/contributing/writing-code/coding-style.txt | 2 | ||||
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 22 | ||||
| -rw-r--r-- | docs/internals/contributing/writing-documentation.txt | 4 | ||||
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/internals/howto-release-django.txt | 2 | ||||
| -rw-r--r-- | docs/internals/security.txt | 2 |
6 files changed, 16 insertions, 19 deletions
diff --git a/docs/internals/contributing/writing-code/coding-style.txt b/docs/internals/contributing/writing-code/coding-style.txt index 1924e39e1d..e76e3a3e29 100644 --- a/docs/internals/contributing/writing-code/coding-style.txt +++ b/docs/internals/contributing/writing-code/coding-style.txt @@ -332,4 +332,4 @@ For details about the JavaScript code style used by Django, see :doc:`javascript`. .. _editorconfig: http://editorconfig.org/ -.. _flake8: https://pypi.python.org/pypi/flake8 +.. _flake8: https://pypi.org/project/flake8/ diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index ce5e42d5a4..7ce2da08ef 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -258,20 +258,20 @@ and install the Geospatial libraries</ref/contrib/gis/install/index>`. Each of these dependencies is optional. If you're missing any of them, the associated tests will be skipped. -.. _argon2-cffi: https://pypi.python.org/pypi/argon2_cffi -.. _bcrypt: https://pypi.python.org/pypi/bcrypt -.. _docutils: https://pypi.python.org/pypi/docutils -.. _geoip2: https://pypi.python.org/pypi/geoip2 -.. _jinja2: https://pypi.python.org/pypi/jinja2 -.. _numpy: https://pypi.python.org/pypi/numpy -.. _Pillow: https://pypi.python.org/pypi/Pillow/ +.. _argon2-cffi: https://pypi.org/project/argon2_cffi/ +.. _bcrypt: https://pypi.org/project/bcrypt/ +.. _docutils: https://pypi.org/project/docutils/ +.. _geoip2: https://pypi.org/project/geoip2/ +.. _jinja2: https://pypi.org/project/jinja2/ +.. _numpy: https://pypi.org/project/numpy/ +.. _Pillow: https://pypi.org/project/Pillow/ .. _PyYAML: https://pyyaml.org/wiki/PyYAML -.. _pytz: https://pypi.python.org/pypi/pytz/ -.. _setuptools: https://pypi.python.org/pypi/setuptools/ +.. _pytz: https://pypi.org/project/pytz/ +.. _setuptools: https://pypi.org/project/setuptools/ .. _memcached: https://memcached.org/ .. _gettext: https://www.gnu.org/software/gettext/manual/gettext.html -.. _selenium: https://pypi.python.org/pypi/selenium -.. _sqlparse: https://pypi.python.org/pypi/sqlparse +.. _selenium: https://pypi.org/project/selenium/ +.. _sqlparse: https://pypi.org/project/sqlparse/ .. _pip requirements files: https://pip.pypa.io/en/latest/user_guide/#requirements-files Code coverage diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt index 8a3bc4b16a..1877bc19de 100644 --- a/docs/internals/contributing/writing-documentation.txt +++ b/docs/internals/contributing/writing-documentation.txt @@ -424,11 +424,11 @@ Spelling check Before you commit your docs, it's a good idea to run the spelling checker. You'll need to install a couple packages first: -* `pyenchant <https://pypi.python.org/pypi/pyenchant/>`_ (which requires +* `pyenchant <https://pypi.org/project/pyenchant/>`_ (which requires `enchant <https://www.abisource.com/projects/enchant/>`_) * `sphinxcontrib-spelling - <https://pypi.python.org/pypi/sphinxcontrib-spelling/>`_ + <https://pypi.org/project/sphinxcontrib-spelling/>`_ Then from the ``docs`` directory, run ``make spelling``. Wrong words (if any) along with the file and line number where they occur will be saved to diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 12859b182e..ca929414a7 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -617,9 +617,6 @@ details on these changes. * Support for the Python Imaging Library (PIL) module will be removed, as it no longer appears to be actively maintained & does not work on Python 3. - You are advised to install `Pillow`_, which should be used instead. - - .. _`Pillow`: https://pypi.python.org/pypi/Pillow * The following private APIs will be removed: diff --git a/docs/internals/howto-release-django.txt b/docs/internals/howto-release-django.txt index 495b7217b5..6d31b17797 100644 --- a/docs/internals/howto-release-django.txt +++ b/docs/internals/howto-release-django.txt @@ -309,7 +309,7 @@ Now you're ready to actually put the release out there. To do this: This just tests that the tarballs are available (i.e. redirects are up) and that they install correctly, but it'll catch silly mistakes. - __ https://pypi.python.org/pypi/virtualenvwrapper + __ https://pypi.org/project/virtualenvwrapper/ #. Ask a few people on IRC to verify the checksums by visiting the checksums file (e.g. https://www.djangoproject.com/m/pgp/Django-1.5b1.checksum.txt) diff --git a/docs/internals/security.txt b/docs/internals/security.txt index d81206dde0..d293ffb343 100644 --- a/docs/internals/security.txt +++ b/docs/internals/security.txt @@ -132,7 +132,7 @@ On the day of disclosure, we will take the following steps: 4. Post a notice to the |django-announce| and oss-security@lists.openwall.com mailing lists that links to the blog post. -.. _the Python Package Index: https://pypi.python.org/pypi +.. _the Python Package Index: https://pypi.org/ .. _the official Django development blog: https://www.djangoproject.com/weblog/ If a reported issue is believed to be particularly time-sensitive -- |
