From 381ec9f1af46d060cac567e38593efc3f6b336eb Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Fri, 10 Apr 2026 10:18:06 +0200 Subject: [PATCH] cocluto v1.0.18 - fixed a bug that caused submodules to be excluded from install eg problem visible with the command: > /usr/bin/python3 -m pip install --root=/ git+https://git.ipr.univ-rennes.fr/cellinfo/cocluto to then: ```sh root@alambix50:~# quman Traceback (most recent call last): File "/usr/local/bin/quman", line 5, in from cocluto.quman import main File "/usr/local/lib/python3.11/dist-packages/cocluto/quman.py", line 13, in from cocluto.ClusterController.QstatParser import QstatParser ``` work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093] --- cocluto/version.py | 2 +- pyproject.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cocluto/version.py b/cocluto/version.py index c6b1306..85ecff5 100644 --- a/cocluto/version.py +++ b/cocluto/version.py @@ -1,4 +1,4 @@ -__version__ = '1.0.17' +__version__ = '1.0.18' class Version(object): diff --git a/pyproject.toml b/pyproject.toml index 48518cd..99711cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,11 @@ quman = "cocluto.quman:main" Repository = "https://git.ipr.univ-rennes.fr/cellinfo/cocluto" [tool.setuptools] -packages = ["cocluto"] +packages = [ + "cocluto", + "cocluto.ClusterController", + "cocluto.Ipmi", + "cocluto.SunGridEngine",] [tool.setuptools.dynamic] version = {attr = "cocluto.version.__version__"}