Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-latest, ubuntu-22.04, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
Expand All @@ -50,11 +51,10 @@ jobs:
version: "0.5.11"
python-version: ${{ matrix.python-version }}

# TODO(#257): Unpin OpenCV versions once we figure out why frame numbers are mismatching in tests.
- name: Install Dependencies
run: |
uv pip install --upgrade build wheel virtualenv
uv pip install opencv-python-headless\<4.13 opencv-contrib-python-headless\<4.13 --only-binary :all:
uv pip install opencv-python-headless opencv-contrib-python-headless --only-binary :all:
uv pip install -r requirements_headless.txt -r docs/requirements.txt

- name: Setup FFmpeg
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# DVR-Scan Python Requirements
#
numpy
# TODO(#257): Unpin OpenCV versions once we figure out why frame numbers are mismatching in tests.
opencv-contrib-python<4.13
opencv-contrib-python
pillow
platformdirs
pytest
Expand Down
3 changes: 1 addition & 2 deletions requirements_headless.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# DVR-Scan Python Requirements
#
numpy
# TODO(#257): Unpin OpenCV versions once we figure out why frame numbers are mismatching in tests.
opencv-contrib-python-headless<4.13
opencv-contrib-python-headless
pillow
platformdirs
pytest
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ install_requires =
scenedetect
screeninfo
tqdm
# TODO(#257): Unpin OpenCV versions once we figure out why frame numbers are mismatching in tests.
opencv-contrib-python<4.13
opencv-contrib-python
pillow
packages =
# Main application
Expand Down
Loading