Skip to content

Commit 74455cc

Browse files
authored
Fix the release package (#1189)
* update changelogs Signed-off-by: xadupre <[email protected]> * fix release Signed-off-by: xadupre <[email protected]> --------- Signed-off-by: xadupre <[email protected]>
1 parent 38e484f commit 74455cc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOGS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Logs
22

3-
## 1.19.0
3+
## 1.19.1
44

55
* Fix QDA converter crashing on string labels and incorrect shape calculation
66
[#1169](https://github.com/onnx/sklearn-onnx/issues/1169)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ classifiers = [
3131
[project.urls]
3232
Homepage = "https://github.com/onnx/sklearn-onnx"
3333

34-
[tool.setuptools]
35-
packages = ["skl2onnx"]
34+
[tool.setuptools.packages.find]
35+
include = ["skl2onnx*"]
3636

3737
[tool.setuptools.dynamic]
3838
version = { attr = "skl2onnx.__version__" }

skl2onnx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Main entry point to the converter from the *scikit-learn* to *onnx*.
55
"""
66

7-
__version__ = "1.19.0"
7+
__version__ = "1.19.1"
88
__author__ = "Microsoft"
99
__producer__ = "skl2onnx"
1010
__producer_version__ = __version__

0 commit comments

Comments
 (0)