From df2341f08d7b50a7ab2fd6930858dc85beae0c6c Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 12:55:44 +0100 Subject: [PATCH] Enhance CI setup with python3-build addition Upgraded our GitHub Actions CI Python package workflow for Ubuntu by including the `python3-build` package during the dependency installation phase. This addition ensures compatibility with projects that require this specific package for building Python applications. --- .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 6f4e04c..ebf4f0a 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 + sudo apt-get install -y python3 python3-pip libhdf5-dev limesuite python3-setuptools automake gcc pkg-config build-essential python3-build - name: Build the package run: |