From 64f006efe541061d357edadfc412c872538a5073 Mon Sep 17 00:00:00 2001 From: Awais Mirza <47096947+awaismirza92@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:14:01 +0200 Subject: [PATCH 1/3] Re-add pyproject.tml to fix unknown env error --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..a1ccc998 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "reflect-cpp" +version = "0.14.1" + +[tool.hatch.envs.default] +dependencies = [ + "mkdocs~=1.6", + "mkdocs-material~=9.5", + "mkdocs-htmlproofer-plugin~=1.2", +] + +[tool.hatch.envs.insiders] +dependencies = [ + "mkdocs~=1.6", + "mkdocs-material @ git+https://{env:GH_C17_DEV_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@9.5.39-insiders-4.53.14", + "mkdocs-htmlproofer-plugin~=1.2", +] \ No newline at end of file From 7a29e72e58fad8a32a6b85d7af97265469825d85 Mon Sep 17 00:00:00 2001 From: Awais Mirza <47096947+awaismirza92@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:42:38 +0200 Subject: [PATCH 2/3] Replace outdated version key with dynamic. Both are unused during docs build. --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a1ccc998..dd1afcbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,17 +1,17 @@ [project] -name = "reflect-cpp" -version = "0.14.1" +name = "reflect-cpp" +dynamic = ["version"] [tool.hatch.envs.default] dependencies = [ - "mkdocs~=1.6", + "mkdocs~=1.6", "mkdocs-material~=9.5", - "mkdocs-htmlproofer-plugin~=1.2", + "mkdocs-htmlproofer-plugin~=1.2", ] [tool.hatch.envs.insiders] dependencies = [ - "mkdocs~=1.6", + "mkdocs~=1.6", "mkdocs-material @ git+https://{env:GH_C17_DEV_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@9.5.39-insiders-4.53.14", "mkdocs-htmlproofer-plugin~=1.2", -] \ No newline at end of file +] From 4dcd154921da8d638993471392f4fe17498969ba Mon Sep 17 00:00:00 2001 From: Awais Mirza <47096947+awaismirza92@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:43:08 +0200 Subject: [PATCH 3/3] Add site/ directory to .gitignore for documentation output --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8c7aedc6..91479bda 100644 --- a/.gitignore +++ b/.gitignore @@ -92,3 +92,6 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST + +# Docs +site/ \ No newline at end of file