Skip to content

Commit

Permalink
Require protobuf >= 3.7.0 for #1
Browse files Browse the repository at this point in the history
  • Loading branch information
daquexian committed May 4, 2019
1 parent 38b04f1 commit 468d60f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion onnxsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from onnxsim.onnx_simplifier import simplify

__version__ = '0.1.2'
__version__ = '0.1.3'
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='onnx-simplifier',
version='0.1.2',
version='0.1.3',
description='Simplify your ONNX model',
author='daquexian',
author_email='daquexian566@gmail.com',
Expand All @@ -13,7 +13,8 @@
keywords='deep-learning ONNX',
install_requires=[
'onnx',
'onnxruntime >= 0.3.0'
'onnxruntime >= 0.3.0',
'protobuf >= 3.7.0'
],
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -27,4 +28,4 @@
'Topic :: Software Development'
],
python_requires='>=3.5'
)
)

0 comments on commit 468d60f

Please sign in to comment.