瀏覽代碼

Fix pickling protocol to use highest available.

This fixes unpickling errors in Python 2.7 as it defaults to the text
protocol.
Rolando Espinoza 8 年之前
父節點
當前提交
d446bb1c19
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      python/setup.py

+ 1 - 1
python/setup.py

@@ -31,7 +31,7 @@ class BuildPyCommand(build_py):
                 model_code = f.read()
             sm = StanModel(model_code=model_code)
             with open(os.path.join(target_dir, '{}_growth.pkl'.format(model_type)), 'wb') as f:
-                pickle.dump(sm, f)
+                pickle.dump(sm, f, protocol=pickle.HIGHEST_PROTOCOL)
 
 class TestCommand(test_command):
     """We must run tests on the build directory, not source."""