File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Build Any Wheel
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ - ' releases/**'
8+
9+ jobs :
10+ build_wheels :
11+ name : Build wheels on ${{ matrix.os }}
12+ runs-on : ${{ matrix.os }}
13+ strategy :
14+ matrix :
15+ os : [ubuntu-latest]
16+
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - uses : actions/setup-python@v4
21+ with :
22+ python-version : ' 3.12'
23+
24+ - name : build wheel
25+ run : python -m pip wheel . -v
26+
27+ - name : install twine
28+ run : python -m pip install twine
29+
30+ - name : check wheel
31+ run : python -m twine check ./onnxmltools*.whl
32+
33+ - uses : actions/upload-artifact@v4
34+ with :
35+ path : ./skl2onnx*.whl
Original file line number Diff line number Diff line change 55This framework converts any machine learned model into onnx format
66which is a common language to describe any machine learned model.
77"""
8- __version__ = "1.13 .0"
8+ __version__ = "1.14 .0"
99__author__ = "ONNX"
1010__producer__ = "OnnxMLTools"
1111__producer_version__ = __version__
You can’t perform that action at this time.
0 commit comments