diff options
author | iarspider <iarspider@gmail.com> | 2021-10-28 20:15:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 13:15:50 -0500 |
commit | 5faa457a35a6eb077ab0e246d7ef471c993a4459 (patch) | |
tree | e3080e18619c5c4e2a16e091f0840c7a9c9ccf10 | |
parent | 8ca3a0fdf845c783b9bf04bcef7bbee7a3a0b8b6 (diff) | |
download | spack-5faa457a35a6eb077ab0e246d7ef471c993a4459.tar.gz spack-5faa457a35a6eb077ab0e246d7ef471c993a4459.tar.bz2 spack-5faa457a35a6eb077ab0e246d7ef471c993a4459.tar.xz spack-5faa457a35a6eb077ab0e246d7ef471c993a4459.zip |
New version: py-fasteners 0.16.3 (#27006)
-rw-r--r-- | var/spack/repos/builtin/packages/py-fasteners/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-fasteners/package.py b/var/spack/repos/builtin/packages/py-fasteners/package.py index 6c65b8b023..466b493aa3 100644 --- a/var/spack/repos/builtin/packages/py-fasteners/package.py +++ b/var/spack/repos/builtin/packages/py-fasteners/package.py @@ -12,8 +12,10 @@ class PyFasteners(PythonPackage): homepage = "https://github.com/harlowja/fasteners" pypi = "fasteners/fasteners-0.14.1.tar.gz" + 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')) + 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')) |