forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce duplication of dependency information (cvat-ai#308)
* Move requirements from setup.py to requirements-base.txt
- Loading branch information
Roman Donchenko
authored
Jun 24, 2021
1 parent
7e35c81
commit f53d423
Showing
4 changed files
with
26 additions
and
33 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
attrs>=19.3.0 | ||
defusedxml>=0.6.0 | ||
GitPython>=3.0.8 | ||
lxml>=4.4.1 | ||
matplotlib>=3.3.1 | ||
numpy>=1.17.3 | ||
Pillow>=6.1.0 | ||
|
||
# Avoid 2.0.2 Linux binary distribution because of | ||
# a conflict in numpy versions with TensorFlow: | ||
# - TF is compiled with numpy 1.19 ABI | ||
# - pycocotools is compiled with numpy 1.20 ABI | ||
# Using a previous version allows to force package rebuilding. | ||
# | ||
# https://github.com/openvinotoolkit/datumaro/issues/253 | ||
pycocotools>=2.0.0,!=2.0.2; platform_system != "Windows" | ||
|
||
pycocotools-windows; platform_system == "Windows" | ||
PyYAML>=5.3.1 | ||
scikit-image>=0.15.0 | ||
tensorboardX>=1.8 |
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,14 +1,5 @@ | ||
attrs>=19.3.0 | ||
Cython>=0.27.3 # include before pycocotools | ||
defusedxml>=0.6.0 | ||
GitPython>=3.0.8 | ||
lxml>=4.4.1 | ||
matplotlib>=3.3.1 | ||
-r requirements-core.txt --no-binary=pycocotools # https://github.com/openvinotoolkit/datumaro/issues/253 | ||
opencv-python-headless>=4.1.0.25 | ||
Pillow>=6.1.0 | ||
pycocotools>=2.0.0 --no-binary=pycocotools # https://github.com/openvinotoolkit/datumaro/issues/253 | ||
PyYAML>=5.3.1 | ||
scikit-image>=0.15.0 | ||
tensorboardX>=1.8 | ||
pandas>=1.1.5 | ||
pytest>=5.3.5 |
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