From 801d4494b20980e3d91ece8dbd8a8270579a6a10 Mon Sep 17 00:00:00 2001
From: cmoineau <cyril.moineau@cea.fr>
Date: Fri, 6 Dec 2024 14:48:35 +0000
Subject: [PATCH] Remove _core from function name following @gregkub comment
 https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/merge_requests/277#note_2935700

---
 python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp
index 1e487aef4..b498e86ed 100644
--- a/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp
+++ b/python_binding/utils/sys_info/pybind_CoreVersionInfo.cpp
@@ -4,8 +4,8 @@
 namespace py = pybind11;
 namespace Aidge {
 void init_CoreSysInfo(py::module& m){
-    m.def("show_core_version", &showCoreVersion);
-    m.def("get_core_project_version", &getCoreProjectVersion);
-    m.def("get_core_git_hash", &getCoreGitHash);
+    m.def("show_version", &showCoreVersion);
+    m.def("get_project_version", &getCoreProjectVersion);
+    m.def("get_git_hash", &getCoreGitHash);
 }
 }
-- 
GitLab