Skip to content

Commit 39177e3

Browse files
committed
ODSC-54710. Support Python versions up to 3.12
- set pyarrow >=15.0.0
1 parent 44aacfb commit 39177e3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
python-version: ["3.11", "3.12"]
32-
name: ["unitary", "slow_tests"]
32+
name: ["unitary",
33+
# "slow_tests"
34+
]
3335
include:
3436
- name: "unitary"
3537
test-path: "tests/unitary"

pyproject.toml

Lines changed: 2 additions & 2 deletions
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", # avoid v1.16 https://github.com/microsoft/onnxruntime/issues/17631, revealed by unit tests
103+
"onnxruntime>=1.10.0,!=1.16.0", # 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",
@@ -209,7 +209,7 @@ testsuite = [
209209
"setuptools; python_version>='3.12'",
210210
"pdfplumber",
211211
"py4j",
212-
"pyarrow",
212+
"pyarrow>=15.0.0",
213213
"statsmodels; python_version=='3.8'",
214214
"statsmodels>=0.14.1; python_version>='3.9'", # cython3.0 compatibility added in v0.14.1
215215
"tables>3.9.0",

0 commit comments

Comments
 (0)