From 276345bc86dd6f2b9f3ffe626d499b5f382bdd20 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 13 Oct 2023 09:53:04 +0200 Subject: [PATCH] Fixed Python --- .gitlab/ci/build.gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml index bdf3f3211..b6c553c38 100644 --- a/.gitlab/ci/build.gitlab-ci.yml +++ b/.gitlab/ci/build.gitlab-ci.yml @@ -143,13 +143,13 @@ build:windows_python: # Update PATH - $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") script: - - python3 -m pip install virtualenv + - python -m pip install virtualenv - virtualenv venv - source venv/bin/activate # Numpy dependancy for unit test - - python3 -m pip install numpy + - python -m pip install numpy - export AIDGE_INSTALL=`pwd`/install - - python3 -m pip install . + - python -m pip install . artifacts: expire_in: 1 week paths: -- GitLab