From 5ccb4e080b45b3d3ab0b199fadac16d94c22e90d Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 12:57:41 +0100 Subject: [PATCH] Expand Ubuntu workflow setup with venv and Python alias Enhanced the GitHub Actions workflow for the Ubuntu environment by including python3-venv to facilitate virtual environment management. Additionally, established python-is-python3 to standardize the Python command, ensuring consistency and avoiding potential versioning issues across different setups. --- .github/workflows/python-package-ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package-ubuntu.yml b/.github/workflows/python-package-ubuntu.yml index ebf4f0a..cf7a851 100644 --- a/.github/workflows/python-package-ubuntu.yml +++ b/.github/workflows/python-package-ubuntu.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | - sudo apt-get install -y python3 python3-pip libhdf5-dev limesuite python3-setuptools automake gcc pkg-config build-essential python3-build + sudo apt-get install -y python3 python3-pip libhdf5-dev limesuite python3-setuptools automake gcc pkg-config build-essential python3-build python3-venv python-is-python3 - name: Build the package run: |