Correct OpenCV Dependabot compatibility cutoff

This commit is contained in:
Victor Kuznetsov
2026-07-30 18:18:49 -07:00
parent 0c4b26bb77
commit fc177bacde
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -7,5 +7,5 @@ def test_dependabot_blocks_opencv_releases_that_require_numpy_2() -> None:
config = Path(".github/dependabot.yml").read_text()
opencv_ignore = config.split('dependency-name: "opencv-python-headless"', maxsplit=1)[1]
assert '"<4.13"' not in opencv_ignore
assert '- ">=4.13"' in opencv_ignore
assert '"<4.12"' not in opencv_ignore
assert '- ">=4.12"' in opencv_ignore