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 <module> from cocluto.quman import main File "/usr/local/lib/python3.11/dist-packages/cocluto/quman.py", line 13, in <module> from cocluto.ClusterController.QstatParser import QstatParser ``` work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093]
This commit is contained in:
parent
f64e31b420
commit
381ec9f1af
|
|
@ -1,4 +1,4 @@
|
||||||
__version__ = '1.0.17'
|
__version__ = '1.0.18'
|
||||||
|
|
||||||
|
|
||||||
class Version(object):
|
class Version(object):
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,11 @@ quman = "cocluto.quman:main"
|
||||||
Repository = "https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
|
Repository = "https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
packages = ["cocluto"]
|
packages = [
|
||||||
|
"cocluto",
|
||||||
|
"cocluto.ClusterController",
|
||||||
|
"cocluto.Ipmi",
|
||||||
|
"cocluto.SunGridEngine",]
|
||||||
|
|
||||||
[tool.setuptools.dynamic]
|
[tool.setuptools.dynamic]
|
||||||
version = {attr = "cocluto.version.__version__"}
|
version = {attr = "cocluto.version.__version__"}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue