From 4b6006875268e2bd525422d55222ec5693dcc413 Mon Sep 17 00:00:00 2001 From: David Minton Date: Tue, 22 Aug 2023 09:15:12 -0400 Subject: [PATCH] Reverted the positioning of the environment call that was accidentally changed --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f9bed9448..aaf0bcd1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,13 +10,14 @@ requires = [ build-backend = "setuptools.build_meta" [tool.cibuildwheel] +environment = {SKBUILD_CONFIGURE_OPTIONS="-DBUILD_SHARED_LIBS=OFF"} test-command = "pytest {package}/tests" test-requires = ['pytest','cython'] test-skip = "cp312-*" skip = "pp* *i686 *-manylinux_i686 *_ppc64le *_s390x *-musllinux* *-win32" [tool.cibuildwheel.linux] -environment = {SKBUILD_CONFIGURE_OPTIONS="-DBUILD_SHARED_LIBS=OFF", FFLAGS="${FFLAGS} -fPIC", CFLAGS="${CFLAGS} -fPIC", LDFLAGS="${LDFLAGS} -fPIE", LIBS="-lgomp"} +environment = {FFLAGS="${FFLAGS} -fPIC", CFLAGS="${CFLAGS} -fPIC", LDFLAGS="${LDFLAGS} -fPIE", LIBS="-lgomp"} before-all = [ "yum install wget m4 doxygen -y || apt-get install wget m4 doxygen -y", "buildscripts/build_dependencies.sh -d /_dependencies -p /usr/local",