Skip to content

Commit

Permalink
Support python 3.11 for arm64 machines
Browse files Browse the repository at this point in the history
Signed-off-by: can <can@anyscale.com>
  • Loading branch information
can-anyscale committed Jun 20, 2023
1 parent 1a1cd26 commit 3f4d244
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .buildkite/pipeline.arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
- py38
- py39
- py310
- py311

- label: ":mechanical_arm: :docker: Build Images: {{matrix}} [aarch64] cu117/cu118"
conditions: ["RAY_CI_PYTHON_DEPENDENCIES_AFFECTED", "RAY_CI_DOCKER_AFFECTED", "RAY_CI_CORE_CPP_AFFECTED"]
Expand All @@ -85,3 +86,4 @@
- py38
- py39
- py310
- py311
2 changes: 1 addition & 1 deletion docker/base-deps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN sudo apt-get update -y && sudo apt-get upgrade -y \
# We install cmake temporarily to get psutil
&& sudo apt-get autoremove -y cmake zlib1g-dev \
# We keep g++ on GPU images, because uninstalling removes CUDA Devel tooling
$(if [ "$BASE_IMAGE" = "ubuntu:focal" ]; then echo \
$(if [ "$BASE_IMAGE" = "ubuntu:focal" ] && [ "$HOSTTYPE" = "x86_64" ]; then echo \
g++; fi) \
# Either install kubectl or remove wget
&& (if [ "$AUTOSCALER" = "autoscaler" ]; \
Expand Down

0 comments on commit 3f4d244

Please sign in to comment.