From f2a1bc52a74253982da8a224fd372b06628a682d Mon Sep 17 00:00:00 2001 From: Madhawa Vidanapathirana Date: Thu, 23 Mar 2017 22:57:42 +0530 Subject: [PATCH 1/2] Update dependencies.rst Indicated that dependency_links are now considered as deprecated. Reference: http://serverfault.com/a/628714 --- dependencies.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dependencies.rst b/dependencies.rst index 3ae7596..f35a2d6 100644 --- a/dependencies.rst +++ b/dependencies.rst @@ -65,6 +65,10 @@ Packages Not On PyPI Sometimes you'll want to use packages that are properly arranged with setuptools, but aren't published to PyPI. In those cases, you can specify a list of one or more ``dependency_links`` URLs where the package can be downloaded, along with some additional hints, and setuptools will find and install the package correctly. +*Edit on 2017-03-23 : Dependency Links are now considered as depecrated in Python Wheels* + +*Reference: http://serverfault.com/questions/608192/pip-install-seems-to-be-ignoring-dependency-links * + For example, if a library is published on GitHub, you can specify it like:: setup( From 634df486ee40bad7a739fafa65723bea3d65e4aa Mon Sep 17 00:00:00 2001 From: Madhawa Vidanapathirana Date: Fri, 24 Mar 2017 13:43:47 +0530 Subject: [PATCH 2/2] Update dependencies.rst --- dependencies.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.rst b/dependencies.rst index f35a2d6..2362f16 100644 --- a/dependencies.rst +++ b/dependencies.rst @@ -65,7 +65,7 @@ Packages Not On PyPI Sometimes you'll want to use packages that are properly arranged with setuptools, but aren't published to PyPI. In those cases, you can specify a list of one or more ``dependency_links`` URLs where the package can be downloaded, along with some additional hints, and setuptools will find and install the package correctly. -*Edit on 2017-03-23 : Dependency Links are now considered as depecrated in Python Wheels* +*Edit on 2017-03-23 : Dependency Links are now considered as deprecated in Python Wheels. `pip install` would not consider `dependency_links` in the installation.* *Reference: http://serverfault.com/questions/608192/pip-install-seems-to-be-ignoring-dependency-links *