Python310:
PYTHON_INTERPRETER: /opt/python/cp310-cp310/bin/python
PYTHON_TAG: cp310
+ Python311:
+ PYTHON_INTERPRETER: /opt/python/cp311-cp311/bin/python
+ PYTHON_TAG: cp311
timeoutInMinutes: 90
pool:
vmImage: Ubuntu-20.04
Python310:
PYTHON_VERSION_SPEC: 3.10
PYTHON_TAG: cp310
+ Python311:
+ PYTHON_VERSION_SPEC: 3.11
+ PYTHON_TAG: cp311
timeoutInMinutes: 90
pool:
vmImage: 'windows-2019'
PYTHON_VERSION_SPEC: 3.10
PYTHON_INTERPRETER: python3.10
PYTHON_TAG: cp310
+ Python311:
+ PYTHON_VERSION_SPEC: 3.11
+ PYTHON_INTERPRETER: python3.11
+ PYTHON_TAG: cp311
timeoutInMinutes: 180
pool:
vmImage: 'macOS-11'
PYTHON_VERSION_SPEC: 3.10
IMAGE: 'Ubuntu-20.04'
PYTHON_INTERPRETER: python3
+ Linux_Python311:
+ PYTHON_VERSION_SPEC: 3.11
+ IMAGE: 'Ubuntu-20.04'
+ PYTHON_INTERPRETER: python3
Windows_Python36:
PYTHON_VERSION_SPEC: 3.6
IMAGE: 'windows-2019'
PYTHON_VERSION_SPEC: 3.10
IMAGE: 'windows-2019'
PYTHON_INTERPRETER: python
+ Windows_Python311:
+ PYTHON_VERSION_SPEC: 3.11
+ IMAGE: 'windows-2019'
+ PYTHON_INTERPRETER: python
Mac_Python36:
PYTHON_VERSION_SPEC: 3.6
IMAGE: 'macOS-11'
PYTHON_VERSION_SPEC: 3.10
IMAGE: 'macOS-11'
PYTHON_INTERPRETER: python3
+ Mac_Python311:
+ PYTHON_VERSION_SPEC: 3.11
+ IMAGE: 'macOS-11'
+ PYTHON_INTERPRETER: python3
timeoutInMinutes: 10
pool:
vmImage: '$(IMAGE)'
-FROM quay.io/pypa/manylinux2014_x86_64:2021-06-07-00faba2
+FROM quay.io/pypa/manylinux2014_x86_64:2022-05-14-b55b680
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
WORKDIR /opt/USD
# XXX:
-# The above manylinux2014 image contains CMake 3.20, but we require
-# 3.24+ for Python 3.10 support. Newer images include later cmake
-# versions but for some reason (possibly the use of gcc 10?) wheels
-# created from these images crash in TBB. So for now, we use this
-# older image but install a newer CMake.
-RUN pipx install --force cmake==3.24.3
+# The above manylinux2014 image contains CMake 3.22, but we require
+# 3.27+ for Python 3.11 support. So we install 3.27 manually here.
+RUN pipx install --force cmake==3.27.9
CMD bash
"Environment :: Console",
"Topic :: Multimedia :: Graphics",
],
- python_requires='>=3.6, <3.11',
+ python_requires='>=3.6, <3.12',
)