Skip to content

Commit

Permalink
skip opencv version 4.7.0.68 in for linux circleCI test
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #4760

Related issue: opencv/opencv-python#765

The newly released opencv 4.7.0.68 isn't BC compatible on CircleCI linux environment, although there were a fix but it seems that the fix won't add to the regular pypi release very soon (https://pypi.org/project/opencv-python/#history), skip this version in our config.

Reviewed By: tglik

Differential Revision: D42859319

fbshipit-source-id: 04dd155051733844c5ca7d79480aa65e006cab16
  • Loading branch information
Yanghan Wang authored and facebook-github-bot committed Jan 31, 2023
1 parent 58e472e commit 4a5e6d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ install_linux_dep: &install_linux_dep
pip install --progress-bar off -U 'git+https://github.com/facebookresearch/iopath'
pip install --progress-bar off -U 'git+https://github.com/facebookresearch/fvcore'
# Don't use pytest-xdist: cuda tests are unstable under multi-process workers.
pip install --progress-bar off ninja opencv-python-headless pytest tensorboard pycocotools onnx
# Don't use opencv 4.7.0.68: https://github.com/opencv/opencv-python/issues/765
pip install --progress-bar off ninja opencv-python-headless!=4.7.0.68 pytest tensorboard pycocotools onnx
pip install --progress-bar off torch==$PYTORCH_VERSION -f $PYTORCH_INDEX
if [[ "$TORCHVISION_VERSION" == "master" ]]; then
pip install git+https://github.com/pytorch/vision.git
Expand Down

0 comments on commit 4a5e6d7

Please sign in to comment.