Add latest version of py-pip (#13306)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:16:36 -05:00 committed by GitHub
parent c130a2980f
commit 04af812e03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,14 +10,15 @@ class PyPip(PythonPackage):
"""The PyPA recommended tool for installing Python packages."""
homepage = "https://pypi.python.org/pypi/pip"
url = "https://pypi.io/packages/source/p/pip/pip-9.0.1.tar.gz"
url = "https://pypi.io/packages/source/p/pip/pip-19.3.tar.gz"
version('19.3', sha256='324d234b8f6124846b4e390df255cacbe09ce22791c3b714aa1ea6e44a4f2861')
version('19.0.3', sha256='6e6f197a1abfb45118dbb878b5c859a0edbdd33fd250100bc015b67fded4b9f2')
version('18.1', sha256='c0a292bd977ef590379a3f05d7b7f65135487b67470f6281289a94e015650ea1')
version('18.1', sha256='c0a292bd977ef590379a3f05d7b7f65135487b67470f6281289a94e015650ea1')
version('10.0.1', sha256='f2bd08e0cd1b06e10218feaf6fef299f473ba706582eb3bd9d52203fdbd7ee68')
version('9.0.1', sha256='09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d')
version('9.0.1', sha256='09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d')
depends_on('python@2.6:2.8,3.3:')
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
# Most Python packages only require setuptools as a build dependency.
# However, pip requires setuptools during runtime as well.