File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ def build(self):
9999 run ("./configure" )
100100 make_options = [
101101 f"-j{ self .cpu_count } " ,
102- "CPPFLAGS=' -DNDEBUG -DSWIG' " ,
102+ "CPPFLAGS=-DNDEBUG -DSWIG" ,
103103 ]
104104 if self .boost_prefix :
105105 make_options .append (f"BOOST_BASE={ self .boost_prefix } " )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def create_swig_wrapper(self):
3636 def create_version_module (self ):
3737 with open (os .path .join (PACKAGE_DIR , "_version.py" ), "w" ) as f :
3838 f .write ("# This file was auto generated by `setup.py`, changes might be lost.\n " )
39- f .write ("__version__ = \" {UTM_VERSION}\" \n " )
39+ f .write (f "__version__ = \" { UTM_VERSION } \" \n " )
4040
4141 def run (self ):
4242 self .create_swig_wrapper ()
You can’t perform that action at this time.
0 commit comments