diff options
author | Ryan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com> | 2022-08-23 03:12:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 09:12:54 +0200 |
commit | 877393e01957551efba86a8a098af6f6357b3b98 (patch) | |
tree | a677bec2be7dbe7ff52841312c928d5e87290ef1 | |
parent | 0d29bc00ec4bf0b669506dc9ec1f0ad99a664944 (diff) | |
download | spack-877393e01957551efba86a8a098af6f6357b3b98.tar.gz spack-877393e01957551efba86a8a098af6f6357b3b98.tar.bz2 spack-877393e01957551efba86a8a098af6f6357b3b98.tar.xz spack-877393e01957551efba86a8a098af6f6357b3b98.zip |
py-jupytext: add v1.14.1 (#32313)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupytext/package.py | 4 |
1 files changed, 3 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 a7c52700b2..22766aa482 100644 --- a/var/spack/repos/builtin/packages/py-jupytext/package.py +++ b/var/spack/repos/builtin/packages/py-jupytext/package.py @@ -16,6 +16,7 @@ class PyJupytext(PythonPackage): maintainers = ["vvolkl"] + version("1.14.1", sha256="314fa0e732b1d14764271843b676938ef8a7b9d53c3575ade636b45d13f341c8") version("1.13.6", sha256="c6c25918ddb6403d0d8504e08d35f6efc447baf0dbeb6a28b73adf39e866a0c4") version("1.13.0", sha256="fb220af65d2bd32d01c779b0e935c4c2b71e3f5f2f01bf1bab10d5f23fe121d4") @@ -25,7 +26,8 @@ class PyJupytext(PythonPackage): 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")) + depends_on("py-markdown-it-py@1.0:2", type=("build", "run"), when="@1.14.1:") + depends_on("py-markdown-it-py@1.0:1", type=("build", "run"), when="@:1.13.6") # 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")) |