File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ def get_objcryst_libraries():
53
53
conda_prefix = os .environ .get ("CONDA_PREFIX" )
54
54
if not conda_prefix :
55
55
raise EnvironmentError (
56
- "CONDA_PREFIX is not set. Please install ObjCryst using conda and activate the environment."
56
+ "CONDA_PREFIX is not set. "
57
+ "Please install ObjCryst using conda and activate the environment."
57
58
)
58
59
if os .name == "nt" :
59
60
libdir = Path (conda_prefix ) / "Library" / "lib"
@@ -65,7 +66,8 @@ def get_objcryst_libraries():
65
66
stem = Path (fn ).stem
66
67
if "objcryst" not in stem .lower ():
67
68
continue
68
- # strip a leading "lib" so that setuptools does -lObjCryst, not -llibObjCryst
69
+ # strip a leading "lib"
70
+ # so that setuptools does -lObjCryst, not -llibObjCryst
69
71
if os .name != "nt" and stem .startswith ("lib" ):
70
72
stem = stem [3 :]
71
73
libs .append (stem )
You can’t perform that action at this time.
0 commit comments