You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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
99
-
"onnx>=1.12.0",
105
+
"lightgbm",
106
+
"onnx>=1.12.0,<=1.15.0", # v 1.15.0 set base on onnxrutime version and onnx opset support - https://onnxruntime.ai/docs/reference/compatibility.html#onnx-opset-support
100
107
"onnxmltools>=1.10.0",
101
-
"onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, revealed by unit tests
108
+
"onnxruntime~=1.17.0,!=1.16.0", # v1.17.0 used in Oracle Database 23ai; avoid v1.16 https://github.com/microsoft/onnxruntime/issues/17631, revealed by unit tests
"tensorflow<=2.15.1"# v2.16.1 with consequence on tf2onnx v1.16.1 (latest) has an issue with Keras 3 installed in py3.11+ (https://github.com/onnx/tensorflow-onnx/issues/2319)
132
+
]
133
+
text = [
134
+
"spacy>=3.4.2", # the first version of spacy that supports python 3.11 is spacy v3.4.2
135
+
"wordcloud>=1.8.1"
136
+
]
137
+
torch = [
138
+
"oracle_ads[viz]",
139
+
"torch",
140
+
"torchvision"
141
+
]
125
142
viz = [
126
-
"bokeh>=3.0.0,<3.2.0", # starting 3.2.0 bokeh not supporting python3.8; relax after ADS will drop py3.8 support
143
+
"bokeh>=3.0.0,<3.2.0", # starting 3.2.0 bokeh not supporting python3.8; relax after ADS will drop py3.8 support
127
144
"folium>=0.12.1",
128
145
"graphviz<0.17",
129
146
"scipy>=1.5.4",
@@ -182,13 +199,9 @@ aqua = ["jupyter_server"]
182
199
# trying to use. Ref - https://pip.pypa.io/en/stable/topics/dependency-resolution/#possible-ways-to-reduce-backtracking.
183
200
# Revisit this section continuously and update to recent version of libraries. focus on pyt3.9/3.10 versions.
184
201
testsuite = [
185
-
"dask==2023.5.0; python_version=='3.8'",
186
-
"dask==2023.10.1; python_version>='3.9'", # oci-cli depends on click==8.0.4, dask>2023.10.1 depends on "click>=8.1"
187
202
"arff",
188
203
"category_encoders==2.6.3", # set version to avoid backtracking
189
204
"cohere==4.53", # set version to avoid backtracking
190
-
"dask==2023.10.1; python_version>='3.9'", # oci-cli depends on click==8.0.4, dask>2023.10.1 depends on "click>=8.1"
191
-
"dask==2023.5.0; python_version=='3.8'",
192
205
"faiss-cpu",
193
206
"fastparquet==2024.2.0", # set version to avoid backtracking
194
207
"imbalanced-learn",
@@ -199,10 +212,11 @@ testsuite = [
199
212
"opensearch-py",
200
213
"pdfplumber",
201
214
"py4j",
202
-
"pyarrow",
215
+
"pyarrow>=15.0.0",
203
216
"statsmodels; python_version=='3.8'",
204
217
"statsmodels>=0.14.1; python_version>='3.9'", # cython3.0 compatibility added in v0.14.1
0 commit comments