From d25e404d1b70c009413ad543075f20d5f3a8c3c7 Mon Sep 17 00:00:00 2001 From: Ben Jourdan Date: Fri, 11 Oct 2024 15:01:50 +0000 Subject: [PATCH] adding python env to CI --- .github/workflows/CI.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a2464c5..049a083 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -294,6 +294,13 @@ jobs: with: python-version: 3.x + # Create a virtual environment + - name: Create and activate virtual environment + run: | + python -m venv venv + source venv/bin/activate + + # Install Maturin to build Rust/Python library - name: Install Maturin run: pip install maturin