summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-10-15 17:34:51 +0200
committerGitHub <noreply@github.com>2021-10-15 10:34:51 -0500
commit2a5a576667dcd6b68bb188a49dce14d97f4e65e5 (patch)
tree3d427f04f8c72cbb83da4ebb5076ac9f0d2f2573 /var
parent5dc8094f8468a33404de018243a60ae2202d6a0f (diff)
downloadspack-2a5a576667dcd6b68bb188a49dce14d97f4e65e5.tar.gz
spack-2a5a576667dcd6b68bb188a49dce14d97f4e65e5.tar.bz2
spack-2a5a576667dcd6b68bb188a49dce14d97f4e65e5.tar.xz
spack-2a5a576667dcd6b68bb188a49dce14d97f4e65e5.zip
py-ipykernel: add 6.4.1 and fix deps (#26758)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipykernel/package.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipykernel/package.py b/var/spack/repos/builtin/packages/py-ipykernel/package.py
index 71f2402abf..e68da51bf9 100644
--- a/var/spack/repos/builtin/packages/py-ipykernel/package.py
+++ b/var/spack/repos/builtin/packages/py-ipykernel/package.py
@@ -7,8 +7,10 @@
class PyIpykernel(PythonPackage):
"""IPython Kernel for Jupyter"""
+ homepage = "https://github.com/ipython/ipykernel"
pypi = "ipykernel/ipykernel-5.3.4.tar.gz"
+ version('6.4.1', sha256='df3355e5eec23126bc89767a676c5f0abfc7f4c3497d118c592b83b316e8c0cd')
version('6.2.0', sha256='4439459f171d77f35b7f7e72dace5d7c2dd10a5c9e2c22b173ad9048fbfe7656')
version('6.0.2', sha256='7fb3e370dbb481b012b74bed4e794d2d16eb2a83930b31e6d8d030b9fdb4d5b4')
version('5.5.5', sha256='e976751336b51082a89fc2099fb7f96ef20f535837c398df6eab1283c2070884')
@@ -32,8 +34,11 @@ class PyIpykernel(PythonPackage):
depends_on('python@3.5:', when='@5.2:', type=('build', 'run'))
depends_on('python@3.7:', when='@6.0:', type=('build', 'run'))
depends_on('py-setuptools', type='build', when='@5:')
- depends_on('py-importlib-metadata@:4', when='@6:^python@:3.7', type=('build', 'run'))
- depends_on('py-argcomplete@1.12.3:', when='@6:^python@:3.7', type=('build', 'run'))
+ depends_on('py-ipython-genutils', when='@5.5.6', type=('build', 'run'))
+ depends_on('py-ipython-genutils', when='@6.3.1:', type=('build', 'run'))
+ depends_on('py-importlib-metadata@:3', when='@6:^python@:3.7', type=('build', 'run'))
+ depends_on('py-importlib-metadata@:4', when='@6.1:^python@:3.7', type=('build', 'run'))
+ depends_on('py-argcomplete@1.12.3:', when='@6.1:^python@:3.7', type=('build', 'run'))
depends_on('py-debugpy@1.0:1', when='@6:', type=('build', 'run'))
depends_on('py-ipython@4.0:', when='@:4', type=('build', 'run'))
depends_on('py-ipython@5.0:', when='@5', type=('build', 'run'))
@@ -41,10 +46,12 @@ 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@:7', when='@6:', type=('build', 'run'))
+ depends_on('py-jupyter-client@:6', when='@6.0.2:', 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'))
depends_on('py-tornado@4.2:6', when='@6:', type=('build', 'run'))
+ depends_on('py-matplotlib-inline@0.1.0:0.1', when='@6:', type=('build', 'run'))
depends_on('py-appnope', when='platform=darwin', type=('build', 'run'))
phases = ['build', 'install', 'install_data']