Skip to content

Commit 1983669

Browse files
committed
Creating 0.18.1 release
Signed-off-by: Eric Reinecke <[email protected]>
1 parent dd2b3bd commit 1983669

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/python-package.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: OpenTimelineIO
66
# for configuring which build will be a C++ coverage build / coverage report
77
env:
88
GH_COV_PY: "3.10"
9-
GH_COV_OS: ubuntu-latest
9+
GH_COV_OS: ubuntu-24.04
1010
GH_DEPENDABOT: dependabot
1111

1212
on:
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
27-
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
27+
os: [ubuntu-24.04, windows-2025, macos-14, macos-15]
2828
# Unfortunately the CMake test target is OS dependent so we set it as
2929
# a variable here.
3030
include:
31-
- os: ubuntu-latest
31+
- os: ubuntu-24.04
3232
OTIO_TEST_TARGET: test
33-
- os: windows-latest
33+
- os: windows-2025
3434
OTIO_TEST_TARGET: RUN_TESTS
35-
- os: macos-latest
35+
- os: macos-15
3636
OTIO_TEST_TARGET: test
3737
- os: macos-14
3838
OTIO_TEST_TARGET: test
@@ -92,16 +92,16 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
strategy:
9494
matrix:
95-
os: [ubuntu-latest, windows-latest, macos-14, macos-latest]
95+
os: [ubuntu-24.04, windows-2025, macos-14, macos-15]
9696
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
9797
include:
98-
- { os: ubuntu-latest, shell: bash }
99-
- { os: macos-latest, shell: bash }
98+
- { os: ubuntu-24.04, shell: bash }
99+
- { os: macos-15, shell: bash }
100100
- { os: macos-14, shell: bash }
101-
- { os: windows-latest, shell: pwsh }
102-
- { os: windows-latest, shell: msys2, python-version: "mingw64" }
101+
- { os: windows-2025, shell: pwsh }
102+
- { os: windows-2025, shell: msys2, python-version: "mingw64" }
103103
exclude:
104-
- { os: macos-latest, python-version: 3.9 }
104+
- { os: macos-15, python-version: 3.9 }
105105

106106
defaults:
107107
run:
@@ -173,16 +173,16 @@ jobs:
173173
matrix:
174174
os:
175175
[
176-
ubuntu-latest,
177-
ubuntu-latest-arm,
178-
windows-latest,
176+
ubuntu-24.04,
177+
ubuntu-24.04-arm,
178+
windows-2025,
179179
macos-14,
180-
macos-latest,
180+
macos-15,
181181
]
182182
python-build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
183183
#exclude:
184184
# none currently
185-
# - { os: macos-latest, python-build: 'cp37' }
185+
# - { os: macos-15, python-build: 'cp37' }
186186
steps:
187187
- uses: actions/checkout@v4
188188

@@ -205,7 +205,7 @@ jobs:
205205

206206
package_sdist:
207207
needs: py_build_test
208-
runs-on: ubuntu-latest
208+
runs-on: ubuntu-24.04
209209
steps:
210210
- uses: actions/checkout@v4
211211
with:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def cmake_install(self):
218218

219219
# Metadata that gets stamped into the __init__ files during the build phase.
220220
PROJECT_METADATA = {
221-
"version": "0.18.1.dev1",
221+
"version": "0.18.1",
222222
"author": 'Contributors to the OpenTimelineIO project',
223223
"author_email": '[email protected]',
224224
"license": 'Apache 2.0 License',

src/opentimelineio/CORE_VERSION_MAP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const label_to_schema_version_map CORE_VERSION_MAP{
174174
{ "Transition", 1 },
175175
{ "UnknownSchema", 1 },
176176
} },
177-
{ "0.18.1.dev1",
177+
{ "0.18.1",
178178
{
179179
{ "Adapter", 1 },
180180
{ "Clip", 2 },

0 commit comments

Comments
 (0)