From 915610df236ba5eb9c6786af203cdff748c1b4d4 Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Mon, 11 Aug 2025 13:16:24 +0200 Subject: [PATCH 1/2] added __all_plugins__ to root package --- CHANGELOG.md | 2 ++ src/compas_libigl/__init__.py | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1431506..5adf98e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +* Fixed `compas_libgl` plugins are not detected. + ### Removed diff --git a/src/compas_libigl/__init__.py b/src/compas_libigl/__init__.py index e56d180..d037dcf 100644 --- a/src/compas_libigl/__init__.py +++ b/src/compas_libigl/__init__.py @@ -3,3 +3,14 @@ __license__ = "Mozilla Public License Version 2.0" __email__ = "van.mele@arch.ethz.ch, petrasvestartas@gmail.com" __version__ = "0.7.4" + + +__all_plugins__ = [ + "compas_libigl.geodistance", + "compas_libigl.intersections", + "compas_libigl.isolines", + "compas_libigl.massmatrix", + "compas_libigl.parametrisation", + "compas_libigl.planarize", + "compas_libigl.meshing", +] From 2d8465bf87467eb7ff74419b16593720511d1e74 Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Mon, 11 Aug 2025 13:24:46 +0200 Subject: [PATCH 2/2] fixed typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5adf98e..28c38de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -* Fixed `compas_libgl` plugins are not detected. +* Fixed `compas_libigl` plugins are not detected. ### Removed