Skip to content

Commit b256ad0

Browse files
committed
👍 Update the number of MAXITER in RADEX
1 parent f6fd087 commit b256ad0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
# from dependent packages
77
from setuptools import setup
88

9+
# module constants
10+
RADEX_BUILD = ['make', 'build', 'LOGFILE=/dev/null', 'MAXITER=999999']
911

1012
# custom build
1113
class Build(build):
1214
def run(self):
13-
cmd = ['make', 'build', 'LOGFILE=/dev/null']
14-
cp = sprun(cmd, stdout=PIPE, stderr=PIPE,
15+
cp = sprun(RADEX_BUILD, stdout=PIPE, stderr=PIPE,
1516
cwd='ndradex/bin', check=True)
1617
build.run(self)
1718

0 commit comments

Comments
 (0)