Skip to content

Commit

Permalink
Switch 2_28 and use curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph McKinsey committed Nov 8, 2024
1 parent a8f56a9 commit 5c18669
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
CIBW_BUILD_VERBOSITY: 3
CIBW_ENVIRONMENT: "CIBW_ARTIFACT_TYPE=${{ matrix.artifact_suffix }}"
CIBW_BEFORE_ALL_LINUX: >
yum install -y wget && mkdir /boost &&
mkdir /boost &&
pushd /boost &&
wget --no-check-certificate 'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2' &&
curl -L -o boost_1_76_0.tar.bz2 'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2' &&
tar xf boost_1_76_0.tar.bz2 &&
popd
CIBW_ENVIRONMENT_LINUX: BOOST_ROOT=/boost
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ Documentation = "https://python.helics.org/"

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

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

0 comments on commit 5c18669

Please sign in to comment.