Description: CMake_build_folder_per_Python_version
 Otherwise it will rebuild everytime because install step from
 interpreter A overwrite build step from interpreter B
 .
 onnx (1.3.0+debian-1) unstable; urgency=medium
 .
   * Initial release.
Author: Adam Cecile <acecile@le-vert.net>

---
Origin: other
Bug: TODO
Forwarded: TODO
Reviewed-By: TODO
Last-Update: 2018-10-23

--- onnx-1.3.0+debian.orig/setup.py
+++ onnx-1.3.0+debian/setup.py
@@ -25,7 +25,7 @@ import multiprocessing
 TOP_DIR = os.path.realpath(os.path.dirname(__file__))
 SRC_DIR = os.path.join(TOP_DIR, 'onnx')
 TP_DIR = os.path.join(TOP_DIR, 'third_party')
-CMAKE_BUILD_DIR = os.path.join(TOP_DIR, '.setuptools-cmake-build')
+CMAKE_BUILD_DIR = os.path.join(TOP_DIR, '.setuptools-cmake-build-' + '.'.join(sys.version.split('.')[:2]))
 
 WINDOWS = (os.name == 'nt')
 
