summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-08-23 02:26:32 -0500
committerGitHub <noreply@github.com>2021-08-23 09:26:32 +0200
commit9a8d7ea3cbad524168233c3c6214bf27b1043e13 (patch)
treea1bb1a9504a1c4e90204f4d3bd0e4e509fd48033 /var
parenta68701c63652d1ed5cc5106916fd78afdd4ddd28 (diff)
downloadspack-9a8d7ea3cbad524168233c3c6214bf27b1043e13.tar.gz
spack-9a8d7ea3cbad524168233c3c6214bf27b1043e13.tar.bz2
spack-9a8d7ea3cbad524168233c3c6214bf27b1043e13.tar.xz
spack-9a8d7ea3cbad524168233c3c6214bf27b1043e13.zip
py-ipykernel: add v6.2.0 and v5.5.5 (#25520)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipykernel/package.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipykernel/package.py b/var/spack/repos/builtin/packages/py-ipykernel/package.py
index 3d3d98530b..62eb5ad22e 100644
--- a/var/spack/repos/builtin/packages/py-ipykernel/package.py
+++ b/var/spack/repos/builtin/packages/py-ipykernel/package.py
@@ -9,6 +9,8 @@ class PyIpykernel(PythonPackage):
pypi = "ipykernel/ipykernel-5.3.4.tar.gz"
+ version('6.2.0', sha256='4439459f171d77f35b7f7e72dace5d7c2dd10a5c9e2c22b173ad9048fbfe7656')
+ version('5.5.5', sha256='e976751336b51082a89fc2099fb7f96ef20f535837c398df6eab1283c2070884')
version('5.3.4', sha256='9b2652af1607986a1b231c62302d070bc0534f564c393a5d9d130db9abbbe89d')
version('5.1.1', sha256='f0e962052718068ad3b1d8bcc703794660858f58803c3798628817f492a8769c')
version('5.1.0', sha256='0fc0bf97920d454102168ec2008620066878848fcfca06c22b669696212e292f')
@@ -27,13 +29,21 @@ class PyIpykernel(PythonPackage):
depends_on('python@2.7:2.8,3.3:', type=('build', 'run'))
depends_on('python@3.4:', when='@5.0:', type=('build', 'run'))
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-ipython@4.0:', when='@:4.999', type=('build', 'run'))
- depends_on('py-ipython@5.0:', when='@5.0.0:', type=('build', 'run'))
+ 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-debugpy@1.0:1.999', 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'))
+ depends_on('py-ipython@7.23.1:7.999', when='@6:', type=('build', 'run'))
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-tornado@4.0:', when='@:4.999', type=('build', 'run'))
- depends_on('py-tornado@4.2:', when='@5.0.0:', type=('build', 'run'))
+ depends_on('py-jupyter-client@:7', when='@6:', 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-appnope', when='platform=darwin', type=('build', 'run'))
phases = ['build', 'install', 'install_data']