Skip to content

Commit 65dad1c

Browse files
committed
add doc change
Signed-off-by: Deyu Huang <[email protected]>
1 parent 2192751 commit 65dad1c

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ __Note: tensorflow.js support was just added. While we tested it with many tfjs
99

1010
TensorFlow has many more ops than ONNX and occasionally mapping a model to ONNX creates issues.
1111

12-
You find a list of supported Tensorflow ops and their mapping to ONNX [here](support_status.md).
12+
You find a list of supported TensorFlow ops and their mapping to ONNX [here](support_status.md).
1313

1414
The common issues we run into we try to document here [Troubleshooting Guide](Troubleshooting.md).
1515

1616
<br/>
1717

18-
| Build Type | OS | Python | Tensorflow | ONNX opset | Status |
18+
| Build Type | OS | Python | TensorFlow | ONNX opset | Status |
1919
| --- | --- | --- | --- | --- | --- |
20-
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.6-3.9 | 1.12-1.15, 2.1-2.8 | 9-15 | [![Build Status](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_apis/build/status/unit_test?branchName=main)](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=main) |
21-
| Unit Test - Full | Linux, MacOS, Windows | 3.6-3.9 | 1.12-1.15, 2.1-2.8 | 9-15 | [![Build Status](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_apis/build/status/unit_test-matrix?branchName=main)](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=main) | |
20+
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.7-3.9 | 1.13-1.15, 2.1-2.8 | 9-15 | [![Build Status](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_apis/build/status/unit_test?branchName=main)](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=main) |
21+
| Unit Test - Full | Linux, MacOS, Windows | 3.7-3.9 | 1.13-1.15, 2.1-2.8 | 9-15 | [![Build Status](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_apis/build/status/unit_test-matrix?branchName=main)](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=main) | |
2222
<br/>
2323

2424
## Supported Versions
@@ -34,15 +34,15 @@ If you want the graph to be generated with a specific opset, use ```--opset``` i
3434

3535
### TensorFlow
3636

37-
We support ```tf-1.x graphs``` and ```tf-2.x```. To keep our test matrix manageable we test tf2onnx running on top of ```tf-1.12 or better```.
37+
We support ```tf-1.x graphs``` and ```tf-2.x```. To keep our test matrix manageable we test tf2onnx running on top of ```tf-1.13 or better```.
3838

3939
When running under tf-2.x tf2onnx will use the tensorflow V2 controlflow.
4040

4141
You can install tf2onnx on top of tf-1.x or tf-2.x.
4242

4343
### Python
4444

45-
We support Python ```3.6-3.9```.
45+
We support Python ```3.7-3.9```.
4646
Note that on windows for Python > 3.7 the protobuf package doesn't use the cpp implementation and is very slow - we recommend to use Python 3.7 for that reason.
4747

4848
## Prerequisites

ci_build/azure_pipelines/unit_test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,16 @@ stages:
157157
- template: 'unit_test.yml'
158158
report_coverage: 'True'
159159

160+
- template: 'templates/job_generator.yml'
161+
parameters:
162+
python_versions: ['3.9']
163+
platforms: ['windows']
164+
tf_versions: ['2.8.1']
165+
onnx_opsets: ['15']
166+
job:
167+
steps:
168+
- template: 'unit_test.yml'
169+
report_coverage: 'True'
170+
160171
- template: 'templates/combine_test_coverage.yml'
161172

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def run(self):
9595
'Topic :: Software Development :: Libraries',
9696
'Topic :: Software Development :: Libraries :: Python Modules',
9797
'Programming Language :: Python :: 3',
98-
'Programming Language :: Python :: 3.6',
9998
'Programming Language :: Python :: 3.7',
10099
'Programming Language :: Python :: 3.8',
101100
'Programming Language :: Python :: 3.9']

0 commit comments

Comments
 (0)