Skip to content

Commit 8bb5fe0

Browse files
committed
Merge branch 'main' of github.com:cms-l1-globaltrigger/tm-grammar
2 parents cd998bd + d2b8d36 commit 8bb5fe0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)