We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8673f7b commit e427d07Copy full SHA for e427d07
.github/workflows/python-package.yml
@@ -87,7 +87,7 @@ jobs:
87
strategy:
88
matrix:
89
os: [ubuntu-latest, windows-latest, macos-latest]
90
- python-version: ['3.7', '3.8', '3.9', '3.10']
+ python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
91
include:
92
- { os: ubuntu-latest, shell: bash }
93
- { os: macos-latest, shell: bash }
@@ -157,7 +157,7 @@ jobs:
157
158
159
160
- python-build: ['cp37*', 'cp38*', 'cp39*', 'cp310*']
+ python-build: ['cp37*', 'cp38*', 'cp39*', 'cp310*', 'cp311*']
161
steps:
162
- uses: actions/checkout@v3
163
@@ -168,8 +168,8 @@ jobs:
168
env:
169
CIBW_BUILD: ${{ matrix.python-build }}
170
CIBW_SKIP: '*musllinux*'
171
- CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
172
- CIBW_MANYLINUX_I686_IMAGE: manylinux2010
+ CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
+ CIBW_MANYLINUX_I686_IMAGE: manylinux2014
173
174
- uses: actions/upload-artifact@v3
175
with:
README.md
@@ -4,7 +4,7 @@ OpenTimelineIO
4
==============
5
6
[](http://www.vfxplatform.com/)
7
-
+
8
[](https://github.com/AcademySoftwareFoundation/OpenTimelineIO/actions/workflows/python-package.yml)
9
[](https://codecov.io/gh/AcademySoftwareFoundation/OpenTimelineIO)
10
[](https://opentimelineio.readthedocs.io/en/latest/index.html)
@@ -155,8 +155,8 @@ You can also install the PySide2 dependency with `python -m pip install .[view]`
155
156
You may need to escape the `[` depending on your shell, `\[view\]` .
-Currently the code base is written against python 3.7, 3.8, 3.9, and 3.10, in
-keeping with the pep8 style. We ask that before developers submit pull
+Currently the code base is written against python 3.7, 3.8, 3.9, 3.10 and 3.11,
+in keeping with the pep8 style. We ask that before developers submit pull
request, they:
- run `make test` -- to ensure that none of the unit tests were broken
setup.py
@@ -316,6 +316,7 @@ def run(self):
316
'Programming Language :: Python :: 3.8',
317
'Programming Language :: Python :: 3.9',
318
'Programming Language :: Python :: 3.10',
319
+ 'Programming Language :: Python :: 3.11',
320
'Operating System :: OS Independent',
321
'Natural Language :: English',
322
],
0 commit comments