Skip to content

Commit 1752171

Browse files
authored
Limit 1.0.x release to OTIO <0.18.0 (#12)
Change version number to 1.0.1 Signed-off-by: Sean Wallitsch <[email protected]>
1 parent 5ac3321 commit 1752171

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
matrix:
2121
# Use macos-13 so we'll be on intel hardware and can pull a pre-built wheel
2222
# When OTIO has an Apple Silicon build we can switch back to macos-latest for that version
23-
os: [ubuntu-latest, macos-13, windows-latest]
24-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
25-
otio-version: ["0.17.0", "main"]
23+
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
24+
python-version: ["3.9", "3.10", "3.11", "3.12"]
25+
otio-version: ["0.17"]
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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66

77
[project]
88
name = "otio-ale-adapter"
9-
version = "1.1.0"
9+
version = "1.0.1"
1010
description = "OpenTimelineIO ALE Adapter"
1111
authors = [
1212
{ name="Contributors to the OpenTimelineIO project", email="[email protected]" },
@@ -15,7 +15,7 @@ license = { file="LICENSE" }
1515
readme = "README.md"
1616
requires-python = ">=3.7"
1717
dependencies = [
18-
"opentimelineio >= 0.17.0"
18+
"opentimelineio >= 0.15.0, <0.18.0"
1919
]
2020

2121
classifiers = [

0 commit comments

Comments
 (0)