Skip to content

Commit

Permalink
Make cython linetrace off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
richardjgowers committed Apr 22, 2019
1 parent 367cc60 commit c7c394e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"parallelization module".format(
Cython.__version__, required_version))
cython_found = False
cython_linetrace = True
cython_linetrace = bool(os.environ.get('CYTHON_TRACE_NOGIL', False))
except ImportError:
cython_found = False
if not is_release:
Expand Down

0 comments on commit c7c394e

Please sign in to comment.