Skip to content

Commit 2272d90

Browse files
committed
[GR-31143] Remove NPY_NUM_BUILD_JOBS=1 during NumPy/SciPy installation.
PullRequest: graalpython/1784
2 parents 0a1d122 + 1ccd1bd commit 2272d90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/lib-graalpython/modules/ginstall.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def setuptools_scm(**kwargs):
275275
def numpy(**kwargs):
276276
setuptools(**kwargs)
277277
# honor following selected env variables: BLAS, LAPACK, ATLAS
278-
numpy_build_env = {"NPY_NUM_BUILD_JOBS": "1"}
278+
numpy_build_env = {}
279279
for key in ("BLAS", "LAPACK", "ATLAS"):
280280
if key in os.environ:
281281
numpy_build_env[key] = os.environ[key]
@@ -333,7 +333,7 @@ def pandas(**kwargs):
333333
@pip_package()
334334
def scipy(**kwargs):
335335
# honor following selected env variables: BLAS, LAPACK, ATLAS
336-
scipy_build_env = {"NPY_NUM_BUILD_JOBS": "1"}
336+
scipy_build_env = {}
337337
for key in ("BLAS", "LAPACK", "ATLAS"):
338338
if key in os.environ:
339339
scipy_build_env[key] = os.environ[key]

0 commit comments

Comments
 (0)