python-myst-nb/0001-modify-the-limitation-of-version-required.patch

49 lines
1.4 KiB
Diff
Raw Normal View History

2023-07-28 09:50:35 +08:00
From baf018ab7221b3e4e40bedbe58ecfbc3cccd1524 Mon Sep 17 00:00:00 2001
From: zoujiancang <jczou@isoftstone.com>
Date: Wed, 20 Sep 2023 11:00:07 +0800
Subject: [PATCH] modify the limitation of version required
---
pyproject.toml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index ab038cb..4126fef 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -39,10 +39,10 @@ dependencies = [
"ipython",
"jupyter-cache>=0.5,<0.7",
"nbclient", # nbclient version pinned by jupyter-client
- "myst-parser~=0.18.0",
- "nbformat~=5.0",
+ "myst-parser>=0.18.0",
+ "nbformat>=5.0",
"pyyaml",
- "sphinx>=4,<6",
+ "sphinx>=4,<8",
"typing-extensions",
# ipykernel is not a requirement of the library,
# but is a common requirement for users (registers the python3 kernel)
@@ -73,7 +73,7 @@ rtd = [
"altair",
"bokeh",
"coconut>=1.4.3,<2.3.0",
- "ipykernel~=5.5",
+ "ipykernel>=5.5",
"ipywidgets",
"jupytext~=1.11.2",
"matplotlib",
@@ -89,7 +89,7 @@ rtd = [
testing = [
"coverage>=6.4,<8.0",
"beautifulsoup4",
- "ipykernel~=5.5",
+ "ipykernel>=5.5",
# for issue with 8.1.0 see https://github.com/ipython/ipython/issues/13554
# TODO ipython 8.5 subtly changes output of test regressions
# see https://ipython.readthedocs.io/en/stable/whatsnew/version8.html#restore-line-numbers-for-input
--
2.27.0