From 45aa1495ff1ac05caca66f6e2e21464fead4cd4e Mon Sep 17 00:00:00 2001 From: gesellkammer Date: Fri, 19 Apr 2024 23:12:48 +0200 Subject: [PATCH] cirrus test 7 --- .cirrus.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 88d58b2..ccf3707 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -10,13 +10,14 @@ setup_macos: &SETUP_MACOS csound --version brew install python@$PYVERSION ls -l - python3 --version - python3 -m venv .venv + python$PYVERSION --version + python$PYVERSION -m venv .venv source .venv/bin/activate + python --version if [[ "$METHOD" == "pip" ]]; then - python3 -m pip install maelzel + python -m pip install maelzel else - python3 -m pip install . + python -m pip install . fi