Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
upgrade to onnx_coreml 1.2 (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhushan23 authored Jan 22, 2020
1 parent 9238558 commit 469298e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def convert(model,
predicted_feature_name='classLabel',
add_custom_layers=False,
custom_conversion_functions={},
minimum_ios_deployment_target='12')
minimum_ios_deployment_target='13')
```

```
Expand Down
3 changes: 3 additions & 0 deletions onnx_coreml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@

from .converter import convert

# onnx-coreml version
__version__ = '1.2'

__all__ = ['convert']
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from setuptools import setup, find_packages
from os import path
import sys
from onnx_coreml import __version__


VERSION = '1.1'
VERSION = __version__

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 469298e

Please sign in to comment.