Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change opencv-python to opencv-python-headless #324

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
* Added the library to ``conda-forge`` so it can now be installed via
``conda install imgaug`` (provided the conda-forge channel was added
before that). #320 #339
* Changed dependency `opencv-python` to `opencv-python-headless`.
This should improve support for some system without GUIs.

## Fixes

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ scipy
Pillow
matplotlib
scikit-image
opencv-python
opencv-python-headless
imageio
Shapely
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
url="https://github.com/aleju/imgaug",
download_url="https://github.com/aleju/imgaug/archive/0.2.9.tar.gz",
install_requires=["scipy", "scikit-image>=0.11.0", "numpy>=1.15.0", "six", "imageio", "Pillow", "matplotlib",
"Shapely", "opencv-python"],
"Shapely", "opencv-python-headless"],
packages=find_packages(),
include_package_data=True,
package_data={
Expand Down