Removed --std=c99 setting

This commit is contained in:
Andrew Murray 2023-11-15 13:21:38 +11:00
parent 9be181c2bf
commit 0a12f6c399
2 changed files with 2 additions and 5 deletions

View File

@ -8,12 +8,12 @@ EXP_FEATURES="fribidi harfbuzz libjpeg_turbo raqm transp_webp webp_anim webp_mux
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install fribidi
export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig"
elif [ "${AUDITWHEEL_POLICY:9}" == "musllinux" ]; then
elif [ "${AUDITWHEEL_POLICY::9}" == "musllinux" ]; then
apk add curl fribidi
else
yum install -y fribidi openblas-devel pkgconfig
fi
if [ "${AUDITWHEEL_POLICY:9}" != "musllinux" ]; then
if [ "${AUDITWHEEL_POLICY::9}" != "musllinux" ]; then
python3 -m pip install numpy
fi

View File

@ -82,9 +82,6 @@ before-all = ".github/workflows/wheels-dependencies.sh"
test-command = "cd {project} && .github/workflows/wheels-test.sh"
test-extras = "tests"
[tool.cibuildwheel.linux]
environment = { CFLAGS="--std=c99" }
[tool.ruff]
line-length = 88
select = [