diff --git a/0001-modify-the-limitation-of-version-required.patch b/0001-modify-the-limitation-of-version-required.patch deleted file mode 100644 index 081e6ce..0000000 --- a/0001-modify-the-limitation-of-version-required.patch +++ /dev/null @@ -1,48 +0,0 @@ -From baf018ab7221b3e4e40bedbe58ecfbc3cccd1524 Mon Sep 17 00:00:00 2001 -From: zoujiancang -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 - diff --git a/myst-nb-0.17.2.tar.gz b/myst-nb-0.17.2.tar.gz deleted file mode 100644 index 79ad143..0000000 Binary files a/myst-nb-0.17.2.tar.gz and /dev/null differ diff --git a/myst_nb-1.0.0.tar.gz b/myst_nb-1.0.0.tar.gz new file mode 100644 index 0000000..2f0fa17 Binary files /dev/null and b/myst_nb-1.0.0.tar.gz differ diff --git a/python-myst-nb.spec b/python-myst-nb.spec index 348073d..d612a41 100644 --- a/python-myst-nb.spec +++ b/python-myst-nb.spec @@ -2,14 +2,13 @@ %global pypi_name myst-nb Name: python-%{pypi_name} -Version: 0.17.2 +Version: 1.0.0 Release: 1 Summary: A collection of tools for working with Jupyter Notebooks in Sphinx. License: MIT URL: https://github.com/executablebooks/myst-nb -Source0: %{url}/archive/%{version}/%{pypi_name}-%{version}.tar.gz -Patch1: 0001-modify-the-limitation-of-version-required.patch +Source0: %{url}/archive/%{version}/myst_nb-%{version}.tar.gz BuildArch: noarch BuildRequires: python3-devel @@ -32,7 +31,7 @@ Summary: %{summary} A collection of tools for working with Jupyter Notebooks in Sphinx. %prep -%autosetup -p1 -n %{pypi_name}-%{version} +%autosetup -p1 -n myst_nb-%{version} %build %pyproject_build @@ -44,10 +43,13 @@ A collection of tools for working with Jupyter Notebooks in Sphinx. %doc README.md %license LICENSE %{python3_sitelib}/myst_nb/* -%{python3_sitelib}/myst_nb-0.17.2.dist-info/ +%{python3_sitelib}/myst_nb-*.dist-info/ %{_bindir}/mystnb* %changelog +* Wed Nov 22 2023 Dongxing Wang - 1.0.0-1 +- Upgrade package to version 1.0.0 + * Fri Jul 28 2023 zoujiancang - 0.17.2-1 - Initial package