We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b323a96 commit 6d97fddCopy full SHA for 6d97fdd
2 files changed
pyproject.toml
@@ -30,7 +30,7 @@ dependencies = [
30
"numpy>=1.16.6",
31
"onnxruntime",
32
"opencv-python-headless",
33
- "openvino==2025.4.1",
+ "openvino>=2025.3",
34
"pillow",
35
]
36
@@ -194,6 +194,9 @@ lint.ignore = [
194
lint.fixable = ["ALL"]
195
lint.unfixable = []
196
197
+# Allow unused variables when underscore-prefixed.
198
+lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
199
+
200
# Exclude a variety of commonly ignored directories.
201
exclude = [
202
".bzr",
@@ -221,9 +224,6 @@ exclude = [
221
224
# Same as Black.
222
225
line-length = 120
223
226
-# Allow unused variables when underscore-prefixed.
-lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
-
227
# Assume Python 3.11.
228
target-version = "py311"
229
0 commit comments