From 2054fc043055042895dcddc92eea221c5ac6093d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20Kubler?= <gregoire.kubler@proton.me>
Date: Tue, 18 Jun 2024 16:31:41 +0200
Subject: [PATCH] chore : minor refactor

---
 pyproject.toml | 2 +-
 setup.py       | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 98a705f6..08bb48b6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "aidge_backend_cpu"
-description="CPU implementation of layers for operators of the AIDGE framework"
+description="CPU implementation of operators of the AIDGE framework"
 dependencies = [
     "numpy>=1.21.6",
     "Jinja2>=3.1.2"
diff --git a/setup.py b/setup.py
index 555bdee7..f2f12a09 100644
--- a/setup.py
+++ b/setup.py
@@ -58,14 +58,15 @@ class CMakeBuild(build_ext):
             [
                 "cmake",
                 str(cwd),
-                "-DTEST=OFF",
                 f"-DCMAKE_INSTALL_PREFIX:PATH={install_path}",
                 f"-DCMAKE_BUILD_TYPE={compile_type}",
+                "-DTEST=OFF",
                 "-DPYBIND=ON",
                 "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON",
                 "-DCOVERAGE=OFF",
             ]
         )
+
         if not self.dry_run:
             self.spawn(
                 ["cmake", "--build", ".", "--config", compile_type, "-j", max_jobs]
-- 
GitLab