summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorValentin Volkl <valentin.volkl@cern.ch>2022-03-07 18:17:34 +0100
committerGitHub <noreply@github.com>2022-03-07 11:17:34 -0600
commit5bbcb43ad3115360eef1c105c1bbff9bb6e48f5e (patch)
treead0f7027f1ecac2b191a3b7904a4e9f7e0e6eb17 /var
parentfe8548853d0dd500d9ffcf4955132fb2e3f0207c (diff)
downloadspack-5bbcb43ad3115360eef1c105c1bbff9bb6e48f5e.tar.gz
spack-5bbcb43ad3115360eef1c105c1bbff9bb6e48f5e.tar.bz2
spack-5bbcb43ad3115360eef1c105c1bbff9bb6e48f5e.tar.xz
spack-5bbcb43ad3115360eef1c105c1bbff9bb6e48f5e.zip
py-jupytext: add version 0.13.6 (#28688)
* py-jupytext: add version 0.13.6 From https://github.com/mwouts/jupytext/commit/da3fcc305db8369335b6fb4bc2fb2b5ed5f5feb2: markdown-it-py v2.0 implements some internal changes, but won't affect jupytext * py-jupytext: keep mdit-py version restricted to 1 * py-jupytext: update dependencies * Apply suggestions from code review Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Apply suggestions from code review Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-jupytext/package.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupytext/package.py b/var/spack/repos/builtin/packages/py-jupytext/package.py
index cd777602b4..bf82e4e8d5 100644
--- a/var/spack/repos/builtin/packages/py-jupytext/package.py
+++ b/var/spack/repos/builtin/packages/py-jupytext/package.py
@@ -16,11 +16,19 @@ class PyJupytext(PythonPackage):
maintainers = ['vvolkl']
+ version('1.13.6', sha256='c6c25918ddb6403d0d8504e08d35f6efc447baf0dbeb6a28b73adf39e866a0c4')
version('1.13.0', sha256='fb220af65d2bd32d01c779b0e935c4c2b71e3f5f2f01bf1bab10d5f23fe121d4')
- depends_on('py-setuptools', type='build')
+ depends_on('python@3.6:3', type=('build', 'run'))
+ depends_on('py-setuptools@40.8.0:', type='build')
depends_on('py-nbformat', type=('build', 'run'))
depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-toml', type=('build', 'run'))
depends_on('py-mdit-py-plugins', type=('build', 'run'))
depends_on('py-markdown-it-py@1.0:1', type=('build', 'run'))
+ # todo: in order to use jupytext as a jupyterlab extension,
+ # some additional dependencies need to be added (and checked):
+ depends_on('py-jupyterlab@3', type=('build', 'run'))
+ # TODO: replace this after concretizer learns how to concretize separate build deps
+ depends_on('py-jupyter-packaging7', type='build')
+ # depends_on('py-jupyter-packaging@0.7.9:0.7', type='build')```