Skip to content

Commit d4034c2

Browse files
committed
ODSC-54710. Support Python versions up to 3.12
- update to "onnxruntime>=1.10.0,!=1.16"
1 parent abaf6f3 commit d4034c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-unittests-py39-py310.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: ["3.11", "3.12"]
31+
python-version: ["3.12"]
3232
name: ["unitary", "slow_tests"]
3333
include:
3434
- name: "unitary"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ onnx = [
100100
"lightgbm<4.0.0", # relax when the official releases of skl2onnx (v1.16.0) and onnxmltools (1.11.3), https://github.com/sdpython/mlprodict/issues/488
101101
"onnx>=1.12.0",
102102
"onnxmltools>=1.10.0",
103-
"onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, revealed by unit tests
103+
"onnxruntime>=1.10.0,!=1.16", # avoid v1.16 https://github.com/microsoft/onnxruntime/issues/17631, revealed by unit tests
104104
"oracle_ads[viz]",
105105
"protobuf<=3.20",
106106
"skl2onnx>=1.10.4",

0 commit comments

Comments
 (0)