summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-18 10:57:04 +0100
committerGitHub <noreply@github.com>2022-02-18 02:57:04 -0700
commit4efd47d0c32ce0ffd9c48ae2c119903cb61d2a1f (patch)
tree15a243dc6ccf3c68a3c08c024ca2a1313325c089
parent43016d0ff4653f5ebd5f5a61531803c60fcbd220 (diff)
downloadspack-4efd47d0c32ce0ffd9c48ae2c119903cb61d2a1f.tar.gz
spack-4efd47d0c32ce0ffd9c48ae2c119903cb61d2a1f.tar.bz2
spack-4efd47d0c32ce0ffd9c48ae2c119903cb61d2a1f.tar.xz
spack-4efd47d0c32ce0ffd9c48ae2c119903cb61d2a1f.zip
py-fasteners: add 0.17.3 (#28988)
-rw-r--r--var/spack/repos/builtin/packages/py-fasteners/package.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-fasteners/package.py b/var/spack/repos/builtin/packages/py-fasteners/package.py
index 899b7ab82f..9b18417578 100644
--- a/var/spack/repos/builtin/packages/py-fasteners/package.py
+++ b/var/spack/repos/builtin/packages/py-fasteners/package.py
@@ -12,10 +12,13 @@ class PyFasteners(PythonPackage):
homepage = "https://github.com/harlowja/fasteners"
pypi = "fasteners/fasteners-0.14.1.tar.gz"
+ version('0.17.3', sha256='a9a42a208573d4074c77d041447336cf4e3c1389a256fd3e113ef59cf29b7980')
version('0.16.3', sha256='b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba3348307de')
version('0.14.1', sha256='427c76773fe036ddfa41e57d89086ea03111bbac57c55fc55f3006d027107e18')
- depends_on('py-setuptools', type='build')
- depends_on('py-monotonic@0.1:', type=('build', 'run'), when='@0.14.1')
- depends_on('py-monotonic@0.1:', type=('build', 'run'), when='@0.16.3: ^python@:3.3')
- depends_on('py-six', type=('build', 'run'))
+ depends_on('python@3.6:', when='@0.17:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+
+ depends_on('py-monotonic@0.1:', when='@0.16 ^python@:3.3', type=('build', 'run'))
+ depends_on('py-monotonic@0.1:', when='@:0.15', type=('build', 'run'))
+ depends_on('py-six', when='@:0.16', type=('build', 'run'))