From 2ed3c0d4487b1849364be3efbd72a57b684abaeb Mon Sep 17 00:00:00 2001 From: Shalabh Chaturvedi Date: Tue, 21 Nov 2023 19:06:32 -0800 Subject: [PATCH] Enable 3.11 in the dagster-manylinux-builder image so pex deploy-python-executable --python-version=3.11 works --- src/Dockerfile.dagster-manylinux-builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile.dagster-manylinux-builder b/src/Dockerfile.dagster-manylinux-builder index 613d3be0..06190999 100644 --- a/src/Dockerfile.dagster-manylinux-builder +++ b/src/Dockerfile.dagster-manylinux-builder @@ -23,7 +23,7 @@ FROM --platform=linux/amd64 quay.io/pypa/manylinux2014_x86_64:latest # Add all the relevant Python binaries to the PATH -ENV PATH="/opt/python/cp38-cp38/bin:/opt/python/cp37-cp37m/bin:/opt/python/cp39-cp39/bin:/opt/python/cp310-cp310/bin:$PATH" +ENV PATH="/opt/python/cp38-cp38/bin:/opt/python/cp37-cp37m/bin:/opt/python/cp39-cp39/bin:/opt/python/cp310-cp310/bin:/opt/python/cp311-cp311/bin:$PATH" # To install unreleased versions, build the wheels and drop them in this directory COPY wheels /wheels