Skip to content

Commit c5590b9

Browse files
committed
Update build scripts for conda recipe
Remove make QM command which no longer exists Do not recompile extension modules during install
1 parent 06ec1ca commit c5590b9

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

bld.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
1+
:: Compile RMG
22
mingw32-make -j%CPU_COUNT%
3-
mingw32-make QM
43

4+
:: Install RMG
55
%PYTHON% setup.py install
66

77
:: lazy "install" of everything in our 'external' folder.

build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
# Compile RMG
12
make -j${CPU_COUNT}
2-
make QM
3+
4+
# Install RMG
35
$PYTHON setup.py install
46

57
# lazy "install" of everything in our 'external' folder.

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,6 @@ def getCanthermExtensionModules():
157157
################################################################################
158158

159159
ext_modules = []
160-
if 'install' in sys.argv:
161-
# This is so users can still do simply `python setup.py install`
162-
ext_modules.extend(getMainExtensionModules())
163-
ext_modules.extend(getSolverExtensionModules())
164160
if 'main' in sys.argv:
165161
# This is for `python setup.py build_ext main`
166162
sys.argv.remove('main')

0 commit comments

Comments
 (0)