From 662c080421653851bf4bb8b2903b26fa54868a14 Mon Sep 17 00:00:00 2001 From: Matthew Ballance Date: Wed, 24 Jul 2024 18:14:11 -0700 Subject: [PATCH] Use virtual environment Signed-off-by: Matthew Ballance --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c58c063..d91f79b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,8 +49,9 @@ jobs: - name: Fetch dependencies run: | python3 --version - python3 -m pip install ivpm --user - python3 -m ivpm update -a + python3 -m venv trampoline + ./trampoline/bin/python3 -m pip install ivpm + ./trampoline/bin/python3 -m ivpm update -a ./packages/python/bin/python3 -m pip install cython setuptools wheel build twine - name: Build wheel env: