From 30a6637cfd654a2ddc8a6d27efd05e2103f8695d Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Tue, 11 Jul 2023 18:25:47 +0200 Subject: [PATCH] Use pip3 to avoid using python 2.7 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d74226f..4edcd42c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,9 +108,9 @@ jobs: cd .. # Test Python template Project - pip install maturin + pip3 install maturin maturin build -m apis/python/node/Cargo.toml - pip install target/wheels/* + pip3 install target/wheels/* dora-cli new test_python_project --lang python --internal-create-with-path-dependencies cd test_python_project cargo build --all