diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-prometheus-client/package.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-prometheus-client/package.py b/var/spack/repos/builtin/packages/py-prometheus-client/package.py index 4b147964d6..64307a9dab 100644 --- a/var/spack/repos/builtin/packages/py-prometheus-client/package.py +++ b/var/spack/repos/builtin/packages/py-prometheus-client/package.py @@ -11,6 +11,7 @@ class PyPrometheusClient(PythonPackage): pypi = "prometheus_client/prometheus_client-0.7.1.tar.gz" + version("0.14.1", sha256="5459c427624961076277fdc6dc50540e2bacb98eebde99886e59ec55ed92093a") version("0.12.0", sha256="1b12ba48cee33b9b0b9de64a1047cbd3c5f2d0ab6ebcead7ddda613a750ec3c5") version("0.7.1", sha256="71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da") version("0.7.0", sha256="ee0c90350595e4a9f36591f291e6f9933246ea67d7cd7d1d6139a9781b14eaae") @@ -21,9 +22,10 @@ class PyPrometheusClient(PythonPackage): depends_on("py-setuptools", type="build") # Notice: prometheus_client/twisted/_exposition.py imports 'twisted.web.wsgi' # which was not ported to Python 3 until twisted 16.0.0 - depends_on("py-twisted", type=("build", "run"), when="+twisted") - depends_on("py-twisted@16:", type=("build", "run"), when="@0.12.0: +twisted ^python@3:") - depends_on("python@2.7:2,3.4:", type=("build", "run"), when="@0.12.0:") + depends_on("py-twisted", when="+twisted", type=("build", "run")) + depends_on("py-twisted@16:", when="@0.12.0: +twisted ^python@3:", type=("build", "run")) + depends_on("python@2.7:2,3.4:", when="@0.12.0", type=("build", "run")) + depends_on("python@3.6:", when="@0.14.1:", type=("build", "run")) @property def import_modules(self): |