Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ numpy>=1.16.0
cython>=0.25
ipython>=5.3.0
coveralls
sympl @ git+https://github.com/JoyMonteiro/sympl.git
sympl==0.5.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"pint>=0.7.0",
"unyt",
"xarray>=0.8.0",
"sympl @ git+https://github.com/JoyMonteiro/sympl.git",
"sympl==0.5.0",
"cython>=0.25",
"scipy>=0.18.1",
]
Expand Down Expand Up @@ -166,7 +166,7 @@ def guess_compiler_name(env_name):
for line in files:
if re.match(r"libgfortran\.a", line):
# Avoid i386 libs on 64bit systems
if not ("i386" in root):
if "i386" not in root:
if root not in lib_path_list:
lib_path_list.append(root)

Expand Down
Loading