From 79195a4c0da458e1345ee7f6d08e9d727c56ceec Mon Sep 17 00:00:00 2001 From: Camilo Diaz Date: Wed, 12 Jun 2024 12:52:37 -0400 Subject: [PATCH] using python3 command --- .github/workflows/unit_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index a75297cc1..a80087865 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -38,8 +38,8 @@ jobs: - name: Install dependencies shell: bash -el {0} run: | - python -m pip install --upgrade pip - python -m pip install mpi4py openmpi + python3 -m pip install --upgrade pip + python3 -m pip install mpi4py openmpi - name: Check MPI version shell: bash -el {0} run: | @@ -47,7 +47,7 @@ jobs: - name: Check Python version shell: bash -el {0} run: | - python --version + python3 --version - name: Install HNN-core shell: bash -el {0} run: |