From 71c8e55b7ca6b5cef02411c006c8cdc3f0b0a8e1 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Tue, 23 May 2023 17:48:25 -0400 Subject: [PATCH] chore: build for old ubuntus (#3453) python3.11 uses a new libc which is not compatible with ubuntu 20.04. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43586c262a..f2b63e9967 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-20.04, macos-latest] steps: - uses: actions/checkout@v2