Fix version constraint in py-ipykernel (#27665)
* Fix version constrains in py-ipykernel and py-ipython Before the fix: ``` $ spack spec py-ipykernel@6.4.1 ^py-jupyter-client@7.0.6 ==> Error: py-ipykernel@6.4.1 ^py-jupyter-client@7.0.6 is unsatisfiable, conflicts are: no version satisfies the given constraints ``` After the fix: ``` ``` (thanks god the old concretizer is still there - it provides sane error messages!) * Fix py-ipython recipe * Revert "Fix py-ipython recipe" This reverts commit d65071665f002fa20721c3d87ae25354bec06ec5.
This commit is contained in:
parent
9904159356
commit
2cdc758860
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class PyIpykernel(PythonPackage):
|
|||
depends_on('py-traitlets@4.1.0:', type=('build', 'run'))
|
||||
depends_on('py-traitlets@4.1.0:5', when='@6:', type=('build', 'run'))
|
||||
depends_on('py-jupyter-client', type=('build', 'run'))
|
||||
depends_on('py-jupyter-client@:6', when='@6.0.2:', type=('build', 'run'))
|
||||
depends_on('py-jupyter-client@:6', when='@6.0.2:6.1', type=('build', 'run'))
|
||||
depends_on('py-jupyter-client@:7', when='@6.2:', type=('build', 'run'))
|
||||
depends_on('py-tornado@4.0:', when='@:4', type=('build', 'run'))
|
||||
depends_on('py-tornado@4.2:', when='@5', type=('build', 'run'))
|
||||
|
|
Loading…
Reference in a new issue