From 22b1c783668bc0e378d5eabaa7be92ac6d125d92 Mon Sep 17 00:00:00 2001 From: mahendrapaipuri Date: Thu, 19 Oct 2023 09:09:50 +0200 Subject: [PATCH] build: Exclude demo folder too from sdist --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ab19a4a0a..5cc0a80f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ path = "src/jupytext/version.py" artifacts = ["jupyterlab/jupyterlab_jupytext/labextension"] # Exclude tests (contains Notebooks that have a total size of ~8MB) to reduce sdist # tarball. (See #1142) -exclude = ["tests", "**/.yarn", "**/node_modules"] +exclude = ["tests", "demo", "**/.yarn", "**/node_modules"] [tool.hatch.build.targets.wheel] packages = ["src/jupytext", "src/jupytext_config", "jupyterlab/jupyterlab_jupytext"]