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():
5353 conda_prefix = os .environ .get ("CONDA_PREFIX" )
5454 if not conda_prefix :
5555 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."
5758 )
5859 if os .name == "nt" :
5960 libdir = Path (conda_prefix ) / "Library" / "lib"
@@ -65,7 +66,8 @@ def get_objcryst_libraries():
6566 stem = Path (fn ).stem
6667 if "objcryst" not in stem .lower ():
6768 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
6971 if os .name != "nt" and stem .startswith ("lib" ):
7072 stem = stem [3 :]
7173 libs .append (stem )
You can’t perform that action at this time.
0 commit comments