summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-luigi/package.py4
-rw-r--r--var/spack/repos/builtin/packages/py-tenacity/package.py8
2 files changed, 8 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-luigi/package.py b/var/spack/repos/builtin/packages/py-luigi/package.py
index b42ce1c6e1..1b725a6f88 100644
--- a/var/spack/repos/builtin/packages/py-luigi/package.py
+++ b/var/spack/repos/builtin/packages/py-luigi/package.py
@@ -12,6 +12,7 @@ class PyLuigi(PythonPackage):
homepage = "https://github.com/spotify/luigi"
pypi = "luigi/luigi-2.8.3.tar.gz"
+ version('3.1.0', sha256='1ae7d76e6f8889e9ed40c699891f990eb6697c974eeaf8ab010f0dfc3766adf1')
version('3.0.3', sha256='7edc05a32bcff5aad28d7c7e3b15b761ef13fe2a495692602ebf0800eba66849')
version('3.0.2', sha256='b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb')
version('3.0.1', sha256='f158f4e093638bf734e2f4f08261bdba414bac7187ab69f1d6f8c95b1c408409')
@@ -29,7 +30,8 @@ class PyLuigi(PythonPackage):
depends_on('py-tornado@5.0:5', type=('build', 'run'), when='@3.0.1')
depends_on('py-tornado@5.0:6', type=('build', 'run'), when='@3.0.2:')
- depends_on('py-tenacity@6.3.0:6', type=('build', 'run'), when='@3.0.3:')
+ depends_on('py-tenacity@6.3.0:6', type=('build', 'run'), when='@3.0.3:3.0')
+ depends_on('py-tenacity@8.0.0:8', type=('build', 'run'), when='@3.1:')
depends_on('py-python-daemon', type=('build', 'run'))
diff --git a/var/spack/repos/builtin/packages/py-tenacity/package.py b/var/spack/repos/builtin/packages/py-tenacity/package.py
index 904a009839..64960ec5ee 100644
--- a/var/spack/repos/builtin/packages/py-tenacity/package.py
+++ b/var/spack/repos/builtin/packages/py-tenacity/package.py
@@ -12,14 +12,16 @@ class PyTenacity(PythonPackage):
homepage = "https://github.com/jd/tenacity"
pypi = "tenacity/tenacity-6.3.1.tar.gz"
+ version('8.0.1', sha256='43242a20e3e73291a28bcbcacfd6e000b02d3857a9a9fff56b297a27afdc932f')
version('6.3.1', sha256='e14d191fb0a309b563904bbc336582efe2037de437e543b38da749769b544d7f')
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
+ depends_on('python@3.6:', type=('build', 'run'), when='@8:')
- depends_on('py-setuptools', type='build')
- depends_on('py-setuptools-scm', type='build')
+ depends_on('py-setuptools@21:', type='build')
+ depends_on('py-setuptools-scm@3.4:+toml', type='build')
- depends_on('py-six@1.9.0:', type=('build', 'run'))
+ depends_on('py-six@1.9.0:', type=('build', 'run'), when='@:7')
depends_on('py-futures@3.0:', when='^python@:2', type=('build', 'run'))
depends_on('py-monotonic@0.6:', when='^python@:2', type=('build', 'run'))