From 2ebe9b768a594513c82e16755757aa250f5224cb Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Tue, 29 Oct 2019 16:19:59 -0500 Subject: [PATCH 1/3] Remove unused, broken link --- source/tutorials/managing-dependencies.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/source/tutorials/managing-dependencies.rst b/source/tutorials/managing-dependencies.rst index d3532dcc3..d20a67b3e 100644 --- a/source/tutorials/managing-dependencies.rst +++ b/source/tutorials/managing-dependencies.rst @@ -96,7 +96,6 @@ when you share your project with others. You should get output similar to this Adding requests to Pipfile's [packages]... .. _Requests: https://python-requests.org -.. _pipenv-tox: https://docs.pipenv.org/advanced/#tox-automation-project Using installed packages From cc7ebb1dab7197d8d16e9adfee96df8179c3d4ea Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Tue, 29 Oct 2019 16:20:24 -0500 Subject: [PATCH 2/3] Link to the PyPI project page instead --- source/guides/installing-using-pip-and-virtual-environments.rst | 2 +- source/tutorials/managing-dependencies.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/guides/installing-using-pip-and-virtual-environments.rst b/source/guides/installing-using-pip-and-virtual-environments.rst index dafd2f0fe..1469e4c55 100644 --- a/source/guides/installing-using-pip-and-virtual-environments.rst +++ b/source/guides/installing-using-pip-and-virtual-environments.rst @@ -207,7 +207,7 @@ pip should download requests and all of its dependencies and install them: Installing collected packages: chardet, urllib3, certifi, idna, requests Successfully installed certifi-2017.7.27.1 chardet-3.0.4 idna-2.6 requests-2.18.4 urllib3-1.22 -.. _Requests: http://docs.python-requests.org/ +.. _Requests: https://pypi.org/project/requests/ Installing specific versions diff --git a/source/tutorials/managing-dependencies.rst b/source/tutorials/managing-dependencies.rst index d20a67b3e..2d3ae1c14 100644 --- a/source/tutorials/managing-dependencies.rst +++ b/source/tutorials/managing-dependencies.rst @@ -95,7 +95,7 @@ when you share your project with others. You should get output similar to this Adding requests to Pipfile's [packages]... -.. _Requests: https://python-requests.org +.. _Requests: https://pypi.org/project/requests/ Using installed packages From 03cd86b326be0e884076cca75c57aa57dd9b578b Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Tue, 29 Oct 2019 16:20:38 -0500 Subject: [PATCH 3/3] Use more neutral langauge --- source/guides/installing-using-pip-and-virtual-environments.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guides/installing-using-pip-and-virtual-environments.rst b/source/guides/installing-using-pip-and-virtual-environments.rst index 1469e4c55..f575cd140 100644 --- a/source/guides/installing-using-pip-and-virtual-environments.rst +++ b/source/guides/installing-using-pip-and-virtual-environments.rst @@ -184,7 +184,7 @@ Installing packages ------------------- Now that you're in your virtual environment you can install packages. Let's install the -excellent `Requests`_ library from the :term:`Python Package Index (PyPI)`: +`Requests`_ library from the :term:`Python Package Index (PyPI)`: .. code-block:: bash