From 6df65d3315a3832f062adef548f4752a6f679209 Mon Sep 17 00:00:00 2001 From: KotlinIsland <65446343+KotlinIsland@users.noreply.github.com> Date: Wed, 2 Nov 2022 20:41:50 +1000 Subject: [PATCH] =?UTF-8?q?Backport=20PR=20#49460:=20(=F0=9F=8E=81)=20add?= =?UTF-8?q?=20python=203.11=20to=20sdist.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/sdist.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sdist.yml b/.github/workflows/sdist.yml index 14cede7bc1a39..7c20545105009 100644 --- a/.github/workflows/sdist.yml +++ b/.github/workflows/sdist.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] concurrency: # https://github.community/t/concurrecy-not-work-for-push/183068/7 group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{matrix.python-version}}-sdist @@ -42,7 +42,7 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -86,6 +86,8 @@ jobs: pip install numpy==1.20.3 ;; 3.10) pip install numpy==1.21.2 ;; + 3.11) + pip install numpy==1.23.2 ;; esac - name: Import pandas