diff options
author | Levi Baber <baberlevi@gmail.com> | 2018-09-14 12:35:45 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-09-14 10:35:45 -0700 |
commit | 0ed58374e7e81f1039357c43c5f42ef39241e309 (patch) | |
tree | 8c93f0e4e0c107ee30713f8ab91c760e61eafa19 | |
parent | 466bc20874efc4a555348cb8b45e8b084a24670b (diff) | |
download | spack-0ed58374e7e81f1039357c43c5f42ef39241e309.tar.gz spack-0ed58374e7e81f1039357c43c5f42ef39241e309.tar.bz2 spack-0ed58374e7e81f1039357c43c5f42ef39241e309.tar.xz spack-0ed58374e7e81f1039357c43c5f42ef39241e309.zip |
py-colormath: new version, requires newer networkx (#9237)
* py-colormath: new version requires newer networkx
-rw-r--r-- | var/spack/repos/builtin/packages/py-colormath/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-colormath/package.py b/var/spack/repos/builtin/packages/py-colormath/package.py index fa1584e85d..712bc526eb 100644 --- a/var/spack/repos/builtin/packages/py-colormath/package.py +++ b/var/spack/repos/builtin/packages/py-colormath/package.py @@ -31,8 +31,10 @@ class PyColormath(PythonPackage): homepage = "https://pypi.python.org/pypi/colormath/2.1.1" url = "https://pypi.io/packages/source/c/colormath/colormath-2.1.1.tar.gz" + version('3.0.0', '3d4605af344527da0e4f9f504fad7ddbebda35322c566a6c72e28edb1ff31217') version('2.1.1', '10a0fb17e3c24363d0e1a3f2dccaa33b') depends_on('py-setuptools', type='build') depends_on('py-numpy', type=('build', 'run')) depends_on('py-networkx', type=('build', 'run')) + depends_on('py-networkx@2.0:', type=('build', 'run'), when='@3.0.0:') |