Skip to content

Commit

Permalink
Post 0.17.0 Release (#6)
Browse files Browse the repository at this point in the history
* Prep for 0.17.0 release
removed `--pre` flag and set dependency to 0.17.0
* 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]>
  • Loading branch information
apetrynet committed Jun 25, 2024
1 parent 675da26 commit 2c318d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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-maya-sequencer-adapter"
version = "1.0.0"
version = "1.1.0"
description = "OpenTimelineIO Maya Sequencer 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"
]

classifiers = [
Expand Down

0 comments on commit 2c318d7

Please sign in to comment.