diff options
author | George Hartzell <hartzell@alerce.com> | 2017-03-29 16:59:54 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-03-29 18:59:54 -0500 |
commit | 68415f0fe5b831f8b68aa7eec2fcf0ae8c445701 (patch) | |
tree | d695764a0e6c6311887e0db8a61acdfcc4514560 | |
parent | 4cd4a2da46070605399b8278d8e5fd6624657d30 (diff) | |
download | spack-68415f0fe5b831f8b68aa7eec2fcf0ae8c445701.tar.gz spack-68415f0fe5b831f8b68aa7eec2fcf0ae8c445701.tar.bz2 spack-68415f0fe5b831f8b68aa7eec2fcf0ae8c445701.tar.xz spack-68415f0fe5b831f8b68aa7eec2fcf0ae8c445701.zip |
Concretization problem breaks httpie dependency (#3629)
* Concretization problem breaks httpie dependency
Concretization problem breaks this. Unconditional for now...
https://github.com/LLNL/spack/issues/3628
* Flake8 cleanups
-rw-r--r-- | var/spack/repos/builtin/packages/httpie/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/httpie/package.py b/var/spack/repos/builtin/packages/httpie/package.py index abd013c1bd..0981dc2d3d 100644 --- a/var/spack/repos/builtin/packages/httpie/package.py +++ b/var/spack/repos/builtin/packages/httpie/package.py @@ -40,4 +40,8 @@ class Httpie(PythonPackage): depends_on('py-pygments@2.1.3:', type=('build', 'run')) depends_on('py-requests@2.11.0:', type=('build', 'run')) depends_on('py-pysocks', type=('build', 'run'), when="+socks") - depends_on('py-argparse@1.2.1:', type=('build', 'run'), when='^python@:2.6,3.0:3.1') + # Concretization problem breaks this. Unconditional for now... + # https://github.com/LLNL/spack/issues/3628 + # depends_on('py-argparse@1.2.1:', type=('build', 'run'), + # when='^python@:2.6,3.0:3.1') + depends_on('py-argparse@1.2.1:', type=('build', 'run')) |