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
Jeremy Tuloup 3 years ago committed by GitHub
parent 48b25dd002
commit b5133c67f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 }}

Loading…
Cancel
Save