From 6000b4c7029a534434089b1f29ed9692e1373434 Mon Sep 17 00:00:00 2001 From: Benoit Chevallier-Mames <64148533+bcm-at-zama@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:26:24 +0100 Subject: [PATCH] chore: clarifying a bit the version problems (#892) Co-authored-by: Andrei Stoian --- src/concrete/ml/deployment/fhe_client_server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/concrete/ml/deployment/fhe_client_server.py b/src/concrete/ml/deployment/fhe_client_server.py index b1f1199ad..9c0063946 100644 --- a/src/concrete/ml/deployment/fhe_client_server.py +++ b/src/concrete/ml/deployment/fhe_client_server.py @@ -98,7 +98,8 @@ def check_concrete_versions(zip_path: Path): f"{sys.version_info.major}.{sys.version_info.minor}" ): # pragma: no cover raise ValueError( - "Not the same Python version between the compiler and the server." + "Not the same Python version between the zip file " + "({zip_path}) and the current machine: " f"{versions['python']} != {sys.version_info.major}.{sys.version_info.minor}" )