Skip to content

Commit

Permalink
FIX: Actually try 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Feb 14, 2024
1 parent 9a4d6d9 commit 1cdda84
Show file tree
Hide file tree
Showing 2 changed files with 6,940 additions and 3,267 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/run-mayavi-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,22 @@ jobs:
python-version: ['3.8']
qt-api: ['pyqt5']
include:
# TODO: Add 3.12 once VTK 9.3 is properly supported
- python-version: '3.11'
- python-version: '3.12'
qt-api: 'pyqt6'
os: ubuntu-latest
vtk: 'vtk>=9.3'
- python-version: '3.10'
qt-api: 'pyside6'
os: ubuntu-latest
vtk: 'vtk<9.3'
- python-version: '3.10'
qt-api: 'pyside6'
os: windows-latest
vtk: 'vtk<9.3'
- python-version: '3.10'
qt-api: 'pyside6'
os: macos-latest
vtk: 'vtk<9.3'
fail-fast: false
defaults:
run:
Expand All @@ -53,9 +56,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
set -exo pipefail
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade ${{ matrix.qt-api }} numpy "vtk<9.3" pillow pytest traits traitsui
python -m pip install --upgrade "${{ matrix.qt-api }}" numpy "${{ matrix.vtk }}" pillow pytest traits traitsui
- name: Install mayavi and tvtk
run: python -um pip install -ve .[app]
- name: Test Mayavi package
Expand Down
Loading

0 comments on commit 1cdda84

Please sign in to comment.