Skip to content

Commit 7322ef5

Browse files
authored
Add action to build the package (#1184)
* update changelogs Signed-off-by: xadupre <xadupre@microsoft.com> * Add action to build the package Signed-off-by: xadupre <xadupre@microsoft.com> * fix changelogs Signed-off-by: xadupre <xadupre@microsoft.com> --------- Signed-off-by: xadupre <xadupre@microsoft.com>
1 parent c108a09 commit 7322ef5

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.github/workflows/wheels-any.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 ./skl2onnx*.whl
32+
33+
- uses: actions/upload-artifact@v4
34+
with:
35+
path: ./skl2onnx*.whl

CHANGELOGS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 1.19.0
44

5+
* Fix QDA converter crashing on string labels and incorrect shape calculation
6+
[#1169](https://github.com/onnx/sklearn-onnx/issues/1169)
7+
* Remove import of split_complex_to_pairs
8+
[#1182](https://github.com/onnx/sklearn-onnx/issues/1182)
59
* Removes dependency on onnxconverter-common
610
[#1179](https://github.com/onnx/sklearn-onnx/issues/1179)
711
* Implements converter for QuantileTransformer

0 commit comments

Comments
 (0)