From a073d5c10fab6e8fc934f7e202d2f951b9fcdc82 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Mon, 7 Nov 2022 09:21:28 +0100 Subject: [PATCH 1/3] Support Sphinx 6.x. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 30b4780..ac2611c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] keywords = ["sphinx", "extension", "material design", "web components"] requires-python = ">=3.7" -dependencies = ["sphinx>=4,<6"] +dependencies = ["sphinx>=4,<7"] [project.urls] Homepage = "https://github.com/executablebooks/sphinx-design" From 93ac84d9e352a51032795dc4a8c9866f9d534e2e Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Thu, 6 Apr 2023 08:14:22 -0700 Subject: [PATCH 2/3] Update myst-parser to 1.0 Updating to myst 1.0 so that we no longer pin Sphinx --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac2611c..fdf67a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,9 +35,9 @@ Documentation = "https://sphinx-design.readthedocs.io" [project.optional-dependencies] code_style = ["pre-commit~=2.12"] -rtd = ["myst-parser~=0.18.0"] +rtd = ["myst-parser~=1.0"] testing = [ - "myst-parser~=0.18.0", + "myst-parser~=1.0", "pytest~=7.1", "pytest-cov", "pytest-regressions", From 757d9820a08838b016706125448b3921bf67d3e0 Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Thu, 6 Apr 2023 08:24:17 -0700 Subject: [PATCH 3/3] Apply suggestions from code review --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fdf67a0..1b99186 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,9 +35,9 @@ Documentation = "https://sphinx-design.readthedocs.io" [project.optional-dependencies] code_style = ["pre-commit~=2.12"] -rtd = ["myst-parser~=1.0"] +rtd = ["myst-parser>=0.18.0,<2"] testing = [ - "myst-parser~=1.0", + "myst-parser>=0.18.0,<2", "pytest~=7.1", "pytest-cov", "pytest-regressions",