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

Commit 469298e

Browse files
authored
upgrade to onnx_coreml 1.2 (#537)
1 parent 9238558 commit 469298e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def convert(model,
4040
predicted_feature_name='classLabel',
4141
add_custom_layers=False,
4242
custom_conversion_functions={},
43-
minimum_ios_deployment_target='12')
43+
minimum_ios_deployment_target='13')
4444
```
4545

4646
```

onnx_coreml/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@
55

66
from .converter import convert
77

8+
# onnx-coreml version
9+
__version__ = '1.2'
10+
811
__all__ = ['convert']

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from setuptools import setup, find_packages
22
from os import path
33
import sys
4+
from onnx_coreml import __version__
45

5-
6-
VERSION = '1.1'
6+
VERSION = __version__
77

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

0 commit comments

Comments
 (0)