Skip to content

Commit

Permalink
reduce size of production builds again
Browse files Browse the repository at this point in the history
  • Loading branch information
Timtam committed Feb 19, 2022
1 parent 6e59315 commit d02f095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def no_cythonize(extensions, **_ignore):
extensions,
gdb_debug = DEBUG_MODE,
compiler_directives = {
'embedsignature': True,
'embedsignature': True if DEBUG_MODE else False,
'language_level': 3,
'linetrace': True,
'linetrace': True if DEBUG_MODE else False,
}
)
else:
Expand Down

0 comments on commit d02f095

Please sign in to comment.