diff --git a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
index efc0bc5d3579c89cd47fdb8b6d1221cee242ae0f..699cb50d2802df0289151470836d3fbc97e39c19 100755
--- a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
+++ b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
@@ -2,7 +2,7 @@
 set -x
 set -e
 for repo in $AIGE_DEPENDENCIES ; do
-  REPO_PATH=$(find /host/home/ -type d -iname $repo \
+  REPO_PATH=$(find /host/home/ -type d -name $repo \
                                -not -path '*install*' \
                                -not -path '*.git*' \
                                -not -path '*miniconda*' \
diff --git a/pyproject.toml b/pyproject.toml
index 1556b44423bf6c6f4eb4f9ba0602ce0b980d9367..17a8d888e9c6a1ab084aa551d27634135dce2819 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,4 +8,6 @@ build-frontend = "build"
 before-build = [".gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"]
 
 [tool.cibuildwheel.environment]
-AIGE_DEPENDENCIES = "" # aidge_core do not rely on any aidge dependency
+
+# aidge_core do not rely on any aidge dependency
+AIGE_DEPENDENCIES = "" # format => "dep_1 dep_2 ... dep_n"