Skip to content

Commit

Permalink
Allow project to build with opencv-python v4. (#111)
Browse files Browse the repository at this point in the history
The REQUIRED rules in setup.py only allowed opencv-python v3.
Now they'll allow v3 and v4.

Resolves #109.

Co-authored-by: Ryan Boehning <[email protected]>
  • Loading branch information
ryboe and Ryan Boehning authored Oct 31, 2020
1 parent 5170964 commit c471432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
AUTHOR = "François Leblanc"

# What packages are required for this module to be executed?
REQUIRED = ["numpy>=1.10", "opencv-python>=3, <4", "Pillow>5"]
REQUIRED = ["numpy>=1.10", "opencv-python>=3, <5", "Pillow>5"]

# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
Expand Down

0 comments on commit c471432

Please sign in to comment.