diff --git a/pyproject.toml b/pyproject.toml index ac65f86..1f9720d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ license = { file="LICENSE" } readme = "README.md" requires-python = ">=3.7" dependencies = [ - "opentimelineio >= 0.15.0" + "opentimelineio >= 0.17.0.dev1" ] classifiers = [ diff --git a/tests/test_svg_adapter.py b/tests/test_svg_adapter.py index 85e0fde..ac115e6 100755 --- a/tests/test_svg_adapter.py +++ b/tests/test_svg_adapter.py @@ -10,6 +10,10 @@ import opentimelineio as otio +os.environ['OTIO_PLUGIN_MANIFEST_PATH'] = os.pathsep.join( + ["$OTIO_PLUGIN_MANIFEST_PATH", "../src/otio_svg_adapter/plugin_manifest.json"] +) + SAMPLE_DATA_DIR = os.path.join(os.path.dirname(__file__), "sample_data") SIMPLE_CUT_OTIO_PATH = os.path.join(SAMPLE_DATA_DIR, 'simple_cut.otio') SIMPLE_CUT_SVG_PATH = os.path.join(SAMPLE_DATA_DIR, 'simple_cut.svg')