Skip to content

Commit c61839e

Browse files
authored
Post OTIO core 0.17.0 release cleanup (#4)
* * remove `--pre` flag from ci.yaml * set OTIO version dependency to 0.17.0 in pyproject.toml * added exclusion of older python versions for macos-latest * pinned macos-13 to make use of pre-built wheels removed exclusion of older python versions for macos-latest * version bump Signed-off-by: apetrynet <[email protected]> --------- Signed-off-by: apetrynet <[email protected]>
1 parent b6267a8 commit c61839e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222

2323
strategy:
2424
matrix:
25+
# Use macos-13 so we'll be on intel hardware and can pull a pre-built wheel
26+
# When OTIO has an Apple Silicon build we can switch back to macos-latest for that version
27+
os: [ ubuntu-latest, macos-13, windows-latest ]
2528
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
26-
os: [ ubuntu-latest, macos-latest, windows-latest ]
2729
otio-version: [ "0.17.0", "main" ]
2830

2931
runs-on: ${{ matrix.os }}
@@ -42,7 +44,7 @@ jobs:
4244
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
4345
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git"
4446
else
45-
pip install OpenTimelineIO>=${{ matrix.otio-version }} --pre --only-binary :all:
47+
pip install OpenTimelineIO>=${{ matrix.otio-version }} --only-binary :all:
4648
fi
4749
pip install flake8 pytest pytest-cov
4850
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-fcpx-xml-adapter"
9-
version = "1.0.0"
9+
version = "1.1.0"
1010
description = "OpenTimelineIO FCP X XML 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.dev1"
18+
"opentimelineio >= 0.17.0"
1919
]
2020

2121
classifiers = [

0 commit comments

Comments
 (0)