py-jupytext: Add version 1.16 and update dependencies (#41552)

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Thomas Madlener 2024-01-29 12:26:58 +01:00 committed by GitHub
parent 5b6a289d30
commit b074e18402
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,19 +18,29 @@ class PyJupytext(PythonPackage):
license("MIT")
version("1.16.0", sha256="94c7e67775e90e1792c39ab7fca4e0459bf7c35656123e8dc2e9e1b3e953baf8")
version("1.14.1", sha256="314fa0e732b1d14764271843b676938ef8a7b9d53c3575ade636b45d13f341c8")
version("1.13.6", sha256="c6c25918ddb6403d0d8504e08d35f6efc447baf0dbeb6a28b73adf39e866a0c4")
version("1.13.0", sha256="fb220af65d2bd32d01c779b0e935c4c2b71e3f5f2f01bf1bab10d5f23fe121d4")
depends_on("python@3.6:3", type=("build", "run"))
depends_on("py-setuptools@40.8.0:", type="build")
depends_on("python@3.8:", type=("build", "run"), when="@1.16:")
depends_on("python@3.6:3", type=("build", "run"), when="@:1.14")
depends_on("py-hatchling@1.5.0:", type="build", when="@1.16:")
depends_on("py-setuptools@40.8.0:", type="build", when="@:1.14.1")
depends_on("py-nbformat", type=("build", "run"))
depends_on("py-mdit-py-plugins", type=("build", "run"))
depends_on("py-markdown-it-py@1.0:", type=("build", "run"), when="@1.16:")
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")
depends_on("py-packaging", type=("build", "run"), when="@1.16:")
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: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"))
depends_on("py-jupyter-packaging@0.7.9:0.7", type="build")
depends_on("py-jupyterlab@4", type=("build", "run"), when="@1.16:")
depends_on("py-jupyterlab@3", type=("build", "run"), when="@:1.14")
depends_on("py-hatch-jupyter-builder@0.5:", type=("build", "run"), when="@1.16:")
depends_on("py-jupyter-packaging@0.7.9:0.7", type="build", when="@:1.14")