File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/lib-graalpython/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ def setuptools_scm(**kwargs):
275
275
def numpy (** kwargs ):
276
276
setuptools (** kwargs )
277
277
# honor following selected env variables: BLAS, LAPACK, ATLAS
278
- numpy_build_env = {"NPY_NUM_BUILD_JOBS" : "1" }
278
+ numpy_build_env = {}
279
279
for key in ("BLAS" , "LAPACK" , "ATLAS" ):
280
280
if key in os .environ :
281
281
numpy_build_env [key ] = os .environ [key ]
@@ -333,7 +333,7 @@ def pandas(**kwargs):
333
333
@pip_package ()
334
334
def scipy (** kwargs ):
335
335
# honor following selected env variables: BLAS, LAPACK, ATLAS
336
- scipy_build_env = {"NPY_NUM_BUILD_JOBS" : "1" }
336
+ scipy_build_env = {}
337
337
for key in ("BLAS" , "LAPACK" , "ATLAS" ):
338
338
if key in os .environ :
339
339
scipy_build_env [key ] = os .environ [key ]
You can’t perform that action at this time.
0 commit comments