Skip to content

Commit 54f6a86

Browse files
committed
Adjusting CI to use exact version of OTIO
Signed-off-by: Joshua Minor <joshm@pixar.com>
1 parent 2e3e0b0 commit 54f6a86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# When OTIO has an Apple Silicon build we can switch back to macos-latest for that version
2323
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
2424
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
25-
otio-version: ["0.17.0,<0.18.0", "0.18.1,<0.19.0", "main"]
25+
otio-version: ["0.17.0", "0.18.1", "main"]
2626

2727
runs-on: ${{ matrix.os }}
2828

@@ -40,7 +40,7 @@ jobs:
4040
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
4141
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git"
4242
else
43-
pip install OpenTimelineIO>="${{ matrix.otio-version }}" --only-binary :all:
43+
pip install OpenTimelineIO=="${{ matrix.otio-version }}" --only-binary :all:
4444
fi
4545
pip install flake8 pytest pytest-cov
4646
shell: bash

0 commit comments

Comments
 (0)