Skip to content

Commit

Permalink
Test against Python 3.12 (#6999)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jtpio committed Aug 7, 2023
1 parent 48b25dd commit b5133c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit b5133c6

Please sign in to comment.