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.
This commit is contained in:
Kumi 2024-02-09 12:55:44 +01:00
parent d13645c3a5
commit df2341f08d
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -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: |