From 9183954e8e14e77d2c69a9817d6a9d20f2893d92 Mon Sep 17 00:00:00 2001 From: youben11 Date: Thu, 26 Dec 2024 09:58:13 +0100 Subject: [PATCH] fix(ci): use python3.10 in CP tests --- .github/workflows/concrete_python_tests_linux.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/concrete_python_tests_linux.yml b/.github/workflows/concrete_python_tests_linux.yml index 457115bde..4059f645d 100644 --- a/.github/workflows/concrete_python_tests_linux.yml +++ b/.github/workflows/concrete_python_tests_linux.yml @@ -83,9 +83,13 @@ jobs: dnf -y install graphviz graphviz-devel cd /concrete/frontends/concrete-python - make venv + make PYTHON=/opt/python/cp310-cp310/bin/python venv source .venv/bin/activate + python -m pip install -r /concrete/third_party/llvm-project/mlir/python/requirements.txt + python -m pip install -r /concrete/compilers/concrete-compiler/compiler/lib/Bindings/Python/requirements_dev.txt + python -m pip install wheel auditwheel + cd /concrete/compilers/concrete-compiler/compiler make BUILD_DIR=/build DATAFLOW_EXECUTION_ENABLED=ON CCACHE=ON Python3_EXECUTABLE=$(which python) python-bindings @@ -127,7 +131,7 @@ jobs: needs: [build-python-bindings] runs-on: ubuntu-latest env: - python-version: "3.8" + python-version: "3.10" steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2