Skip to content

Commit

Permalink
Use newer manylinux image and fix boost install syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph McKinsey committed Aug 6, 2024
1 parent 98394bd commit d554885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ jobs:

- name: Install boost
run:
wget --no-check-certificate 'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2'
mkdir /boost
wget --no-check-certificate 'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2' &&
mkdir /boost &&
(cd boost; tar xf boost_1_76_0.tar.bz2)
- name: Build sdist
run: BOOST_ROOT=/boost pipx run build --sdist
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Documentation = "https://python.helics.org/"

[tool.cibuildwheel]
test-command = ["helics --version"]
linux.manylinux-x86_64-image = "manylinux_2_28"

[tool.scikit-build]
minimum-version = "0.8"
Expand Down

0 comments on commit d554885

Please sign in to comment.