Skip to content

Commit c5e2745

Browse files
committed
use greater or equal for numpy requirement
1 parent c8cf451 commit c5e2745

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ build_script:
5353
5454
cd ..\..
5555
56-
xcopy "%APPVEYOR_BUILD_FOLDER%\opencv\build\lib\RELEASE\cv2.pyd" cv2
56+
xcopy "%APPVEYOR_BUILD_FOLDER%\opencv\build\lib\RELEASE\*.pyd" cv2
5757
5858
C:\Python27\python.exe setup.py bdist_wheel
5959

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def is_pure(self):
4646
package_data=package_data,
4747
maintainer="Olli-Pekka Heinisuo",
4848
include_package_data=True,
49-
install_requires="numpy==%s" % numpy_version,
49+
install_requires="numpy>=%s" % numpy_version,
5050
classifiers=[
5151
'Development Status :: 5 - Production/Stable',
5252
'Environment :: Console',

0 commit comments

Comments
 (0)