diff --git a/README.md b/README.md index 815b04f..8aa434d 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ cd onnx-coreml * click * numpy -* coremltools (0.8+) -* onnx (0.2.1+) +* coremltools (2.0+) +* onnx (1.3.0+) ## How to use diff --git a/setup.py b/setup.py index 33599f9..16a1498 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import sys -VERSION = '0.1.1' +VERSION = '0.2.0' here = path.abspath(path.dirname(__file__)) @@ -47,10 +47,10 @@ install_requires=[ 'click', 'numpy', - 'onnx>=0.2.1', + 'onnx>=1.3.0', 'typing>=3.6.4', 'typing-extensions>=3.6.2.1', - 'coremltools>=0.8', + 'coremltools>=2.0', ], setup_requires=['pytest-runner'], tests_require=[