summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEric Martin <erimar77@users.noreply.github.com>2019-04-10 17:38:28 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-04-10 15:38:28 -0700
commit8f1ebfc73cb4926c71f87df6f10cf82814c95821 (patch)
treeace2d820fc7239b1b61d9d057e6a76a355b8d3ff /var
parenta1db22ba1a033f5f30236a2cf16b53a6b1afe9b3 (diff)
downloadspack-8f1ebfc73cb4926c71f87df6f10cf82814c95821.tar.gz
spack-8f1ebfc73cb4926c71f87df6f10cf82814c95821.tar.bz2
spack-8f1ebfc73cb4926c71f87df6f10cf82814c95821.tar.xz
spack-8f1ebfc73cb4926c71f87df6f10cf82814c95821.zip
py-requests: Add missing dependencies for versions 2.16.0 and up (#10996)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-requests/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-requests/package.py b/var/spack/repos/builtin/packages/py-requests/package.py
index 834f182985..872512276f 100644
--- a/var/spack/repos/builtin/packages/py-requests/package.py
+++ b/var/spack/repos/builtin/packages/py-requests/package.py
@@ -31,6 +31,11 @@ class PyRequests(PythonPackage):
depends_on('py-setuptools', type='build')
+ depends_on('py-chardet@3.0.2:3.0.999', type=('build', 'run'), when='@2.16.0:')
+ depends_on('py-idna@2.5', type=('build', 'run'), when='@2.16.0:')
+ depends_on('py-urllib3@1.21.1:1.21.999', type=('build', 'run'), when='@2.16.0:')
+ depends_on('py-certifi@2017.4.17', type=('build', 'run'), when='@2.16.0:')
+
depends_on('py-pytest@2.8.0:', type='test')
depends_on('py-pytest-cov', type='test')
depends_on('py-pytest-httpbin@0.0.7', type='test')