From a89ca6537b80032b054a11f08c89e83bb9e60637 Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Fri, 5 Feb 2016 16:17:23 +0100 Subject: [PATCH] fix cythonize --- bin/cythonize.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/cythonize.py b/bin/cythonize.py index 8b5f60376..81e0248d6 100755 --- a/bin/cythonize.py +++ b/bin/cythonize.py @@ -88,7 +88,8 @@ def load_hashes(filename): def save_hashes(hash_db, filename): - json.dump(hash_db, open(filename, 'wb')) + with open(filename, 'w') as f: + f.write(json.dumps(hash_db)) def get_hash(path): @@ -108,7 +109,7 @@ def hash_add(base, path, db): def process(base, filename, db): root, ext = os.path.splitext(filename) if ext in ['.pyx', '.cpp']: - if hash_changed(base, filename, db): + if hash_changed(base, filename, db) or not os.path.isfile(os.path.join(base, root + '.cpp')): preserve_cwd(base, process_pyx, root + '.pyx', root + '.cpp') hash_add(base, root + '.cpp', db) hash_add(base, root + '.pyx', db)