forked from facebookresearch/vissl
-
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.
Move pycocotools to dev only dependency of VISSL (facebookresearch#204)
Summary: Pull Request resolved: facebookresearch#204 pycocotools is not a mandatory dependency of vissl. moving this to dev only Reviewed By: bottler Differential Revision: D26725057 fbshipit-source-id: 30f29e6bd9b245ecfa55e05087d745a4722d9066
- Loading branch information
1 parent
44bb572
commit 179e293
Showing
3 changed files
with
1 addition
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ requirements: | |
- importlib_resources | ||
- hydra-core | ||
- tabulate | ||
- pycocotools>=2.0.1 | ||
|
||
test: | ||
imports: | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ parameterized==0.7.4 | |
numpy>=1.15 | ||
submitit>=1.1.5 | ||
tabulate | ||
pycocotools>=2.0.1 | ||
fvcore | ||
fairscale |
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ def get_version(): | |
"nbconvert", | ||
"bs4", | ||
"faiss-gpu", | ||
"pycocotools>=2.0.1", | ||
] | ||
}, | ||
) |