File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +6
-11
lines changed
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
- " setuptools==59.2.0" , " wheel==0.37.0" , " cmake>=3.1" , " pip" ,
4
- " scikit-build>=0.13.2" ,
3
+ " cmake>=3.1" ,
5
4
" numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
6
5
" numpy==1.17.0; python_version=='3.7' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
7
6
" numpy==1.17.5; python_version=='3.8' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
@@ -10,5 +9,8 @@ requires = [
10
9
" numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
11
10
" numpy==1.21.2; python_version=='3.10' and platform_system!='Darwin'" ,
12
11
" numpy==1.21.4; python_version=='3.10' and platform_system=='Darwin'" ,
13
- " numpy==1.23.2; python_version>='3.11'"
12
+ " numpy==1.22.2; python_version>='3.11'" ,
13
+ " pip" ,
14
+ " scikit-build>=0.14.0" ,
15
+ " setuptools==59.2.0" ,
14
16
]
Original file line number Diff line number Diff line change @@ -256,13 +256,6 @@ def main():
256
256
cmake_args .append ("-DWITH_LAPACK=ON" )
257
257
cmake_args .append ("-DENABLE_PRECOMPILED_HEADERS=OFF" )
258
258
259
- # https://github.com/scikit-build/scikit-build/issues/479
260
- if "CMAKE_ARGS" in os .environ :
261
- import shlex
262
-
263
- cmake_args .extend (shlex .split (os .environ ["CMAKE_ARGS" ]))
264
- del shlex
265
-
266
259
# works via side effect
267
260
RearrangeCMakeOutput (
268
261
rearrange_cmake_output_data , files_outside_package_dir , package_data .keys ()
@@ -314,7 +307,7 @@ def main():
314
307
)
315
308
316
309
317
- class RearrangeCMakeOutput ( object ) :
310
+ class RearrangeCMakeOutput :
318
311
"""
319
312
Patch SKBuild logic to only take files related to the Python package
320
313
and construct a file hierarchy that SKBuild expects (see below)
You can’t perform that action at this time.
0 commit comments