diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-13 12:54:23 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-13 12:54:23 -0600 |
commit | da501564cb12751814f51cd713f80e3eec5b2406 (patch) | |
tree | f2333bd46adf3d6dc2a3be9faae336bb64c1ac83 | |
parent | 5db615fecadc18f5364d03499a9d1c73f70228a2 (diff) | |
download | spack-da501564cb12751814f51cd713f80e3eec5b2406.tar.gz spack-da501564cb12751814f51cd713f80e3eec5b2406.tar.bz2 spack-da501564cb12751814f51cd713f80e3eec5b2406.tar.xz spack-da501564cb12751814f51cd713f80e3eec5b2406.zip |
Add latest version of py-botocore (#14136)
-rw-r--r-- | var/spack/repos/builtin/packages/py-botocore/package.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-botocore/package.py b/var/spack/repos/builtin/packages/py-botocore/package.py index 16877560a2..bea17e7eda 100644 --- a/var/spack/repos/builtin/packages/py-botocore/package.py +++ b/var/spack/repos/builtin/packages/py-botocore/package.py @@ -10,18 +10,19 @@ class PyBotocore(PythonPackage): """Low-level, data-driven core of boto 3.""" homepage = "https://github.com/boto/botocore" - url = "https://pypi.io/packages/source/b/botocore/botocore-1.12.169.tar.gz" + url = "https://pypi.io/packages/source/b/botocore/botocore-1.13.38.tar.gz" import_modules = ['botocore'] + version('1.13.38', sha256='15766a367f39dba9de3c6296aaa7da31030f08a0117fd12685e7df682d8acee2') version('1.12.169', sha256='25b44c3253b5ed1c9093efb57ffca440c5099a2d62fa793e8b6c52e72f54b01e') depends_on('py-setuptools', type='build') depends_on('py-jmespath@0.7.1:0.999', type=('build', 'run')) - depends_on('py-docutils@0.10:', type=('build', 'run')) + depends_on('py-docutils@0.10:0.15', type=('build', 'run')) depends_on('py-ordereddict@1.1', type=('build', 'run'), when='^python@2.6.0:2.6.999') depends_on('py-simplejson@3.3.0', type=('build', 'run'), when='^python@2.6.0:2.6.999') - depends_on('py-python-dateutil@2.1:2.999', type=('build', 'run')) + depends_on('py-python-dateutil@2.1:2.8.0', type=('build', 'run')) depends_on('py-python-dateutil@2.1:2.6', type=('build', 'run'), when='^python@2.6.0:2.6.999') depends_on('py-urllib3@1.20:1.25', type=('build', 'run')) depends_on('py-urllib3@1.20:1.23', type=('build', 'run'), when='^python@2.6.0:2.6.999') |