From b5133c67f1a5c9c87d99abc44b7b04e6214aca45 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 7 Aug 2023 07:10:46 +0200 Subject: [PATCH] Test against Python 3.12 (#6999) * Test against Python 3.12 * Only on `ubuntu-latest` for now * Fix typo * `allow-prereleases: true` * Fix `py_cmd` * Update build.yml * Try all platforms on 3.12 --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fcbfb32500..0663d839b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -118,12 +118,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python: ['3.8', '3.11'] + python: ['3.8', '3.11', '3.12'] include: - python: '3.8' dist: 'notebook*.tar.gz' - python: '3.11' dist: 'notebook*.whl' + - python: '3.12' + dist: 'notebook*.whl' - os: windows-latest py_cmd: python - os: macos-latest @@ -136,6 +138,7 @@ jobs: with: python-version: ${{ matrix.python }} architecture: 'x64' + allow-prereleases: true - uses: actions/download-artifact@v3 with: name: notebook-dist-${{ github.run_number }}