From cd4a620796ce15fb38bd9f747150bbd9f141b57b Mon Sep 17 00:00:00 2001 From: Harshal Pohekar Date: Wed, 23 Oct 2024 20:00:13 +0530 Subject: [PATCH 1/2] build: Move dependencies to docs section --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6ba7cd20796..1adeda2e5c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,11 +58,6 @@ psutil = ">=5.9.5" pyyaml = ">=6.0" requests = ">=2.32.3" h5py = { version = "==3.12.1", optional = true } -openpyxl = { version = ">=3.1.5", optional = true } -plotly = { version = ">=5.22.0", optional = true } -python-pptx = { version = ">=0.6.23", optional = true } -seaborn = { version = ">=0.13.2", optional = true } -tensorflow = { version = ">=2.17.0", optional = true } [tool.poetry.group.docs] optional = true @@ -84,6 +79,11 @@ sphinxcontrib-websupport = "==2.0.0" sphinxemoji = "==0.3.1" sphinx-toggleprompt = "==0.5.2" autodocsumm = "==0.2.13" +openpyxl = { version = ">=3.1.5", optional = true } +plotly = { version = ">=5.22.0", optional = true } +python-pptx = { version = ">=0.6.23", optional = true } +seaborn = { version = ">=0.13.2", optional = true } +tensorflow = { version = ">=2.17.0", optional = true } [tool.poetry.group.test] optional = true From a866757d4c09d80752b4fdde8a6a35d4057dd2fa Mon Sep 17 00:00:00 2001 From: Harshal Pohekar Date: Fri, 25 Oct 2024 20:18:56 +0530 Subject: [PATCH 2/2] remove examples --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1adeda2e5c6..d1eeb6b9a7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,7 +95,6 @@ pytest-mock = "==3.14.0" pytest-xdist = "==3.6.1" [tool.poetry.extras] -examples = ["openpyxl", "plotly", "python-pptx", "seaborn", "tensorflow"] reader = ["h5py"] tests = ["pytest", "pytest-cov", "pytest-mock", "pytest-xdist"]