Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post OTIO core 0.17.0 release cleanup #4

Merged
merged 4 commits into from
Jun 25, 2024
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:

strategy:
matrix:
# 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 ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
otio-version: [ "0.17.0", "main" ]

runs-on: ${{ matrix.os }}
Expand All @@ -42,7 +44,7 @@ jobs:
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
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
pip install flake8 pytest pytest-cov
shell: bash
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-burnins-adapter"
version = "1.0.0"
version = "1.1.0"
description = "OpenTimelineIO Burnins Adapter"
authors = [
{ name="Contributors to the OpenTimelineIO project", email="[email protected]" },
Expand All @@ -15,7 +15,7 @@ license = { file="LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"opentimelineio >= 0.17.0.dev1",
"opentimelineio >= 0.17.0",
"pillow"
]

Expand Down
Loading