File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,11 @@ install:
3030build :
3131 parallel : true
3232build_script :
33+ - " MSBuild /help"
3334 - " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
3435 - cd c:\projects\polyfempy
3536 - " python --version"
36- - python -m pip install . --no-deps -vv
37+ - python setup.py install
3738
3839test_script :
3940 - cd c:\projects\polyfempy
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def build_extension(self, ext):
6060 cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}' .format (cfg .upper (), extdir )]
6161 if sys .maxsize > 2 ** 32 :
6262 cmake_args += ['-A' , 'x64' ]
63- build_args += ['--' , '/m' , '/MP' ]
63+ build_args += ['--' , '/m' ]
6464 else :
6565 cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg ]
6666 build_args += ['--' , '-j2' ]
You can’t perform that action at this time.
0 commit comments