Skip to content

Commit

Permalink
Merge pull request #49 from apetrynet/post_0.17.0_release
Browse files Browse the repository at this point in the history
Post 0.17.0 Release
consensus is to merge
  • Loading branch information
meshula authored Oct 8, 2024
2 parents e784e3e + 33259d8 commit b18abe2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
plugin_name: "otio_aaf_plugin"
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# Use macos-13 so we'll be on intel hardware and can pull a pre-built wheel
# When OTIO has an Apple Silicon build we can switch back to macos-latest for that version
os: [ubuntu-latest, macos-13, windows-latest]
otio-version: ["main", "0.17.0"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

Expand All @@ -91,9 +93,9 @@ jobs:
python -m pip install --upgrade pip
pip install pytest pytest-cov wheel -V pyaaf2
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git@extract_adapters"
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git"
else
pip install OpenTimelineIO>=${{ matrix.otio-version }} --pre --only-binary :all:
pip install OpenTimelineIO>=${{ matrix.otio-version }} --only-binary :all:
fi
- name: Run Unit Tests
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"

[project]
name = "otio-aaf-adapter"
version = "1.1.0.dev1"
version = "1.1.0"
description = "OpenTimelineIO AAF Adapter"
authors = [
{ name="Contributors to the OpenTimelineIO project", email="[email protected]" },
Expand All @@ -15,7 +15,7 @@ license = { file="LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"opentimelineio >= 0.17.0.dev1",
"opentimelineio >= 0.17.0",
"pyaaf2>=1.4.0"
]

Expand Down

0 comments on commit b18abe2

Please sign in to comment.