-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin OpenCV <= 3.4.9.31 for better Python distribution support. (#31)
* add opencv to required packages in setup.py * align package dependencies with deepcell-toolbox * pin opencv to last supporting 2.7 build. * bump version to 0.2.6 and format with a constant VERSION variable. * add opencv limit to install_requires. * Test installation using setup.py instead of requirements.txt
- Loading branch information
Showing
3 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
numpy | ||
pandas | ||
numpy>=1.16.4,<2 | ||
pandas>=0.23.3,<1 | ||
networkx>=2.1 | ||
scipy | ||
scikit-image | ||
opencv-python | ||
scipy>=1.1.0,<2 | ||
scikit-image>=0.14.0,<0.17 | ||
opencv-python<=3.4.9.31 | ||
pathlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,16 +26,19 @@ | |
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
VERSION = '0.2.6' | ||
|
||
setup(name='Deepcell_Tracking', | ||
version='0.2.5', | ||
version=VERSION, | ||
description='Tracking cells and lineage with deep learning.', | ||
author='Van Valen Lab', | ||
author_email='[email protected]', | ||
url='https://github.com/vanvalenlab/deepcell-tracking', | ||
download_url='https://github.com/vanvalenlab/' | ||
'deepcell-tracking/tarball/0.2.5', | ||
'deepcell-tracking/tarball/{}'.format(VERSION), | ||
license='LICENSE', | ||
install_requires=['networkx>=2.1', | ||
install_requires=['opencv-python<=3.4.9.31', | ||
'networkx>=2.1', | ||
'numpy', | ||
'pandas', | ||
'pathlib', | ||
|