diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2022-02-22 08:26:23 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 15:26:23 +0100 |
commit | 800933bbdfc4caff6285806249edd20f025fa99b (patch) | |
tree | 4d5dd7da00179217baf0cb2401fa5acea348ec16 /var | |
parent | 2516885615d06e1cd182d5d050c15cf3418e2175 (diff) | |
download | spack-800933bbdfc4caff6285806249edd20f025fa99b.tar.gz spack-800933bbdfc4caff6285806249edd20f025fa99b.tar.bz2 spack-800933bbdfc4caff6285806249edd20f025fa99b.tar.xz spack-800933bbdfc4caff6285806249edd20f025fa99b.zip |
py-notebook: fix py-nbconvert dep (#29020)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-notebook/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-notebook/package.py b/var/spack/repos/builtin/packages/py-notebook/package.py index 97aae5d3e7..fb637af366 100644 --- a/var/spack/repos/builtin/packages/py-notebook/package.py +++ b/var/spack/repos/builtin/packages/py-notebook/package.py @@ -55,6 +55,8 @@ class PyNotebook(PythonPackage): depends_on('py-jupyter-client@5.3.1:', type=('build', 'run'), when='@6.0.0:6.0.1') depends_on('py-jupyter-client@5.3.4:', type=('build', 'run'), when='@6.0.2:') depends_on('py-nbformat', type=('build', 'run')) + # https://github.com/jupyter/notebook/pull/6286 + depends_on('py-nbconvert@5:', type=('build', 'run'), when='@5.5:') depends_on('py-nbconvert', type=('build', 'run')) depends_on('py-ipykernel', type=('build', 'run')) depends_on('py-send2trash', type=('build', 'run'), when='@6:') |