Commit 503a62cb authored by scoder's avatar scoder Committed by GitHub

Merge pull request #1656 from jdemeyer/force_message

Print no message if force=True
parents 8dbc7c39 7622d27d
......@@ -872,7 +872,7 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False,
dep_timestamp, dep = deps.newest_dependency(source)
priority = 2 - (dep in deps.immediate_dependencies(source))
if force or c_timestamp < dep_timestamp:
if not quiet:
if not quiet and not force:
if source == dep:
print("Compiling %s because it changed." % source)
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment