From 63ead6f674c4bbeaa01f93ca7c11d6b6094d3511 Mon Sep 17 00:00:00 2001 From: jesterhazy Date: Fri, 26 Jan 2018 16:28:37 -0800 Subject: [PATCH] Update to onnx 1.0.1 (#20) --- .gitignore | 3 +++ setup.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 19d4dce..4c57495 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# onnx tests +.cache/ + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/setup.py b/setup.py index 77e577d..c9a0859 100644 --- a/setup.py +++ b/setup.py @@ -16,13 +16,13 @@ setup( name='onnx-mxnet', - version='0.3.2', + version='0.4.1', description='ONNX-MXNet Model converter', url='https://github.com/onnx/onnx-mxnet', keywords='ONNX MXNet model converter deep learning', packages=pkgs, - install_requires=['mxnet>=0.11.0', 'onnx>=0.2'], - tests_require=['mxnet>=0.11.0', 'onnx>=0.2', 'numpy', 'pylint'], + install_requires=['mxnet>=0.11.0', 'onnx>=1.0.1'], + tests_require=['pytest', 'pylint'], include_package_data=True, license='Apache 2.0' )