We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3668d80 + 947c068 commit 5e41380Copy full SHA for 5e41380
2 files changed
requirements_dev.txt
@@ -19,4 +19,4 @@ numpy>=1.16.0
19
cython>=0.25
20
ipython>=5.3.0
21
coveralls
22
-sympl @ git+https://github.com/JoyMonteiro/sympl.git
+sympl==0.5.0
setup.py
@@ -43,7 +43,7 @@
43
"pint>=0.7.0",
44
"unyt",
45
"xarray>=0.8.0",
46
- "sympl @ git+https://github.com/JoyMonteiro/sympl.git",
+ "sympl==0.5.0",
47
"cython>=0.25",
48
"scipy>=0.18.1",
49
]
@@ -166,7 +166,7 @@ def guess_compiler_name(env_name):
166
for line in files:
167
if re.match(r"libgfortran\.a", line):
168
# Avoid i386 libs on 64bit systems
169
- if not ("i386" in root):
+ if "i386" not in root:
170
if root not in lib_path_list:
171
lib_path_list.append(root)
172
0 commit comments