diff options
author | Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com> | 2021-10-09 18:31:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 11:31:11 -0500 |
commit | 9194ca1e2f468172d9463bd2da82e54a8c15172f (patch) | |
tree | b5b86d745600805672cb647b99655ec4c5427980 | |
parent | e6cc92554dab54c357cc1a2abf6673ce90b628ed (diff) | |
download | spack-9194ca1e2f468172d9463bd2da82e54a8c15172f.tar.gz spack-9194ca1e2f468172d9463bd2da82e54a8c15172f.tar.bz2 spack-9194ca1e2f468172d9463bd2da82e54a8c15172f.tar.xz spack-9194ca1e2f468172d9463bd2da82e54a8c15172f.zip |
idna: Add versions 2.9 for sierrapy #23768 and 3.2(current) (#26616)
py-sierrapy was merged accidentally and pins its versions to exact
numbers. Add 2.9 as the version for sierrapy and the current 3.2
-rw-r--r-- | var/spack/repos/builtin/packages/py-idna/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-idna/package.py b/var/spack/repos/builtin/packages/py-idna/package.py index 619d8894b9..3cd8026234 100644 --- a/var/spack/repos/builtin/packages/py-idna/package.py +++ b/var/spack/repos/builtin/packages/py-idna/package.py @@ -11,10 +11,13 @@ class PyIdna(PythonPackage): """Internationalized Domain Names for Python (IDNA 2008 and UTS #46) """ homepage = "https://github.com/kjd/idna" - pypi = "idna/idna-2.8.tar.gz" + pypi = "idna/idna-3.2.tar.gz" + version('3.2', sha256='467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3') + version('2.9', sha256='7588d1c14ae4c77d74036e8c22ff447b26d0fde8f007354fd48a7814db15b7cb') version('2.8', sha256='c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407') version('2.5', sha256='3cb5ce08046c4e3a560fc02f138d0ac63e00f8ce5901a56b32ec8b7994082aab') depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) + depends_on('python@3.5:', type=('build', 'run'), when='@3.2') depends_on('py-setuptools', type=('build', 'link')) |