Skip to content

Commit 918c998

Browse files
authored
Merge branch 'main' into markerWrite_tlehr
2 parents 9fb8fce + b18abe2 commit 918c998

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ jobs:
6464
plugin_name: "otio_aaf_plugin"
6565
strategy:
6666
matrix:
67-
os: [ubuntu-latest, windows-latest, macos-latest]
67+
# Use macos-13 so we'll be on intel hardware and can pull a pre-built wheel
68+
# When OTIO has an Apple Silicon build we can switch back to macos-latest for that version
69+
os: [ubuntu-latest, macos-13, windows-latest]
6870
otio-version: ["main", "0.17.0"]
6971
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
7072

@@ -91,9 +93,9 @@ jobs:
9193
python -m pip install --upgrade pip
9294
pip install pytest pytest-cov wheel -V pyaaf2
9395
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
94-
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git@extract_adapters"
96+
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git"
9597
else
96-
pip install OpenTimelineIO>=${{ matrix.otio-version }} --pre --only-binary :all:
98+
pip install OpenTimelineIO>=${{ matrix.otio-version }} --only-binary :all:
9799
fi
98100
99101
- name: Run Unit Tests

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-aaf-adapter"
9-
version = "1.1.0.dev1"
9+
version = "1.1.0"
1010
description = "OpenTimelineIO AAF Adapter"
1111
authors = [
1212
{ name="Contributors to the OpenTimelineIO project", email="[email protected]" },
@@ -15,7 +15,7 @@ license = { file="LICENSE.txt" }
1515
readme = "README.md"
1616
requires-python = ">=3.7"
1717
dependencies = [
18-
"opentimelineio >= 0.17.0.dev1",
18+
"opentimelineio >= 0.17.0",
1919
"pyaaf2>=1.4.0"
2020
]
2121

0 commit comments

Comments
 (0)