diff --git a/include/aidge/utils/sys_info/LearningVersionInfo.hpp b/include/aidge/utils/sys_info/LearningVersionInfo.hpp
index 7572e247dc5f5f7e798603b9c53157a8ec462968..9ec21d4853e09258c9e75db48ec2912f099fae6c 100644
--- a/include/aidge/utils/sys_info/LearningVersionInfo.hpp
+++ b/include/aidge/utils/sys_info/LearningVersionInfo.hpp
@@ -1,7 +1,7 @@
 #ifndef AIDGE_UTILS_SYS_INFO_LEARNING_VERSION_INFO_H
 #define AIDGE_UTILS_SYS_INFO_LEARNING_VERSION_INFO_H
 
-#include "aidge/utils/Log.hpp"
+#include <fmt/core.h>
 #include "aidge/learning_version.h"
 
 namespace Aidge {
@@ -15,22 +15,22 @@ constexpr inline const char * getLearningGitHash(){
 }
 
 void showLearningVersion() {
-    Log::info("Aidge Learning: {} ({}), {} {}", getLearningProjectVersion(), getLearningGitHash(), __DATE__, __TIME__);
+    fmt::println("Aidge Learning: {} ({}), {} {}", getLearningProjectVersion(), getLearningGitHash(), __DATE__, __TIME__);
         // Compiler version
     #if defined(__clang__)
     /* Clang/LLVM. ---------------------------------------------- */
-        Log::info("Clang/LLVM compiler version: {}.{}.{}\n", __clang_major__ , __clang_minor__, __clang_patchlevel__);
+        fmt::println("Clang/LLVM compiler version: {}.{}.{}", __clang_major__ , __clang_minor__, __clang_patchlevel__);
     #elif defined(__ICC) || defined(__INTEL_COMPILER)
     /* Intel ICC/ICPC. ------------------------------------------ */
-        Log::info("Intel ICC/ICPC compiler version: {}\n", __INTEL_COMPILER);
+        fmt::println("Intel ICC/ICPC compiler version: {}", __INTEL_COMPILER);
     #elif defined(__GNUC__) || defined(__GNUG__)
     /* GNU GCC/G++. --------------------------------------------- */
-        Log::info("GNU GCC/G++ compiler version: {}.{}.{}", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
+        fmt::println("GNU GCC/G++ compiler version: {}.{}.{}", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
     #elif defined(_MSC_VER)
     /* Microsoft Visual Studio. --------------------------------- */
-        Log::info("Microsoft Visual Studio compiler version: {}\n", _MSC_VER);
+        fmt::println("Microsoft Visual Studio compiler version: {}", _MSC_VER);
     #else
-        Log::info("Unknown compiler\n");
+        fmt::println("Unknown compiler");
     #endif
 }
 }  // namespace Aidge
diff --git a/pyproject.toml b/pyproject.toml
index 9c3a98aec53a5e72aae93f6f3c45b5a56da07592..d50fb7adaaab2633881fe62a5a4fe3646f38fd7d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -14,8 +14,6 @@ classifiers = [
     "Programming Language :: C++",
     "Programming Language :: Python",
     "Programming Language :: Python :: 3",
-    "Programming Language :: Python :: 3.8",
-    "Programming Language :: Python :: 3.9",
     "Programming Language :: Python :: 3.10",
     "Programming Language :: Python :: 3.11",
     "Programming Language :: Python :: 3.12",
@@ -29,7 +27,7 @@ dynamic = ["version"] # defined in pbr
 
 [project.urls]
 Homepage = "https://www.deepgreen.ai/en/platform"
-Documentation = "https://eclipse-aidge.readthedocs.io/en/latest/"
+Documentation = "https://eclipse.dev/aidge/"
 Repository = "https://gitlab.eclipse.org/eclipse/aidge/aidge_learning"
 Issues = "https://gitlab.eclipse.org/eclipse/aidge/aidge_learning/-/issues/"
 Changelog = "https://gitlab.eclipse.org/eclipse/aidge/aidge_learning/-/releases"