From 247429d5f669644ec3c2fec8a35ec6fdcca14f92 Mon Sep 17 00:00:00 2001 From: Marcus Mohr <marcus.mohr@lmu.de> Date: Wed, 5 Mar 2025 15:03:02 +0100 Subject: [PATCH] Fix pyproject.toml for wheel generation The packages list was missing the new module introduced in !37 [c381530]. Commit adds hog.operator_generation.function_space_implementations to list. This is a recurring problem, see also !22 in this respect. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5da6620..da16c36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hog" -version = "0.1" +version = "0.1.1" dependencies = [ "islpy", "ndim @ https://github.com/sigma-py/ndim/archive/refs/tags/v0.1.6.tar.gz", @@ -17,6 +17,7 @@ dependencies = [ packages = [ "hog", "hog.operator_generation", + "hog.operator_generation.function_space_implementations", "hog.quadrature", "hog.recipes", "hog.recipes.integrands", -- GitLab