Skip to content

Commit 6d97fdd

Browse files
committed
loosen openvino requirements
1 parent b323a96 commit 6d97fdd

2 files changed

Lines changed: 117 additions & 125 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"numpy>=1.16.6",
3131
"onnxruntime",
3232
"opencv-python-headless",
33-
"openvino==2025.4.1",
33+
"openvino>=2025.3",
3434
"pillow",
3535
]
3636

@@ -194,6 +194,9 @@ lint.ignore = [
194194
lint.fixable = ["ALL"]
195195
lint.unfixable = []
196196

197+
# Allow unused variables when underscore-prefixed.
198+
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
199+
197200
# Exclude a variety of commonly ignored directories.
198201
exclude = [
199202
".bzr",
@@ -221,9 +224,6 @@ exclude = [
221224
# Same as Black.
222225
line-length = 120
223226

224-
# Allow unused variables when underscore-prefixed.
225-
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
226-
227227
# Assume Python 3.11.
228228
target-version = "py311"
229229

0 commit comments

Comments
 (0)