Skip to content

Commit ea60818

Browse files
authored
Post 0.17.0 release (#11)
* removed unnecessary automation * updated setup-python to v4 removed --pre flag * set dependency to 0.17.0 added python 3.11 to the list of languages * added badges updated contribution section * version bump Signed-off-by: apetrynet <flehnerheener@gmail.com> --------- Signed-off-by: apetrynet <flehnerheener@gmail.com>
1 parent ff2240c commit ea60818

4 files changed

Lines changed: 13 additions & 40 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v2
3232

3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v2
34+
uses: actions/setup-python@v4
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737

@@ -41,7 +41,7 @@ jobs:
4141
if [[ "${{ matrix.otio-version }}" == "main" ]]; then
4242
pip install "git+https://github.com/AcademySoftwareFoundation/OpenTimelineIO.git"
4343
else
44-
pip install OpenTimelineIO>=${{ matrix.otio-version }} --pre --only-binary :all:
44+
pip install OpenTimelineIO>=${{ matrix.otio-version }} --only-binary :all:
4545
fi
4646
pip install flake8 pytest pytest-cov
4747
shell: bash

.github/workflows/create_draft_release.yaml

Lines changed: 0 additions & 33 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# OpenTimelineIO CMX3600 EDL Adapter
2+
[![Build Status](https://github.com/OpenTimelineIO/otio-fcp-adapter/actions/workflows/ci.yaml/badge.svg)](https://github.com/OpenTimelineIO/otio-cmx3600-adapter/actions/workflows/ci.yaml)
3+
![Dynamic YAML Badge](https://img.shields.io/badge/dynamic/yaml?url=https%3A%2F%2Fraw.githubusercontent.com%2FOpenTimelineIO%2Fotio-cmx3600-adapter%2Fmain%2F.github%2Fworkflows%2Fci.yaml&query=%24.jobs%5B%22test-plugin%22%5D.strategy.matrix%5B%22otio-version%22%5D&label=OpenTimelineIO)
4+
![Dynamic YAML Badge](https://img.shields.io/badge/dynamic/yaml?url=https%3A%2F%2Fraw.githubusercontent.com%2FOpenTimelineIO%2Fotio-cmx3600-adapter%2Fmain%2F.github%2Fworkflows%2Fci.yaml&query=%24.jobs%5B%22test-plugin%22%5D.strategy.matrix%5B%22python-version%22%5D&label=Python)
5+
26

37
The `cmx_3600` adapter is part of OpenTimelineIO's core adapter plugins.
48
It provides reading and writing of CMX3600 formatted Edit Decision Lists (EDL).
@@ -91,15 +95,16 @@ for details.
9195
Nothing in the license file or this project grants any right to use Pixar or any other contributor’s trade names, trademarks, service marks, or product names.
9296

9397

94-
## Contributions
98+
# Contributions
9599

96100
If you want to contribute to the project,
97-
please see: https://opentimelineio.readthedocs.io/en/latest/tutorials/contributing.html
101+
please see: https://opentimelineio.readthedocs.io/en/latest/tutorials/contributing.html
102+
Please also read up on [testing your code](https://github.com/OpenTimelineIO/otio-plugin-template#testing-your-plugin-during-development)
103+
in the "getting started" section of the OpenTimelineIO plugin template repository.
98104

99105

100106
# Contact
101107

102108
For more information, please visit http://opentimeline.io/
103109
or https://github.com/AcademySoftwareFoundation/OpenTimelineIO
104110
or join our discussion forum: https://lists.aswf.io/g/otio-discussion
105-

pyproject.toml

Lines changed: 3 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-cmx3600-adapter"
9-
version = "1.0.0"
9+
version = "1.1.0"
1010
description = "OpenTimelineIO CMX 3600 EDL Adapter"
1111
authors = [
1212
{ name="Contributors to the OpenTimelineIO project", email="otio-discussion@lists.aswf.io" },
@@ -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 = [
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.8",
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
34+
"Programming Language :: Python :: 3.11",
3435
"Operating System :: OS Independent",
3536
"Natural Language :: English"
3637
]

0 commit comments

Comments
 (0)