Skip to content

2024.2

2024.2 #36

Workflow file for this run

name: Check all install extras
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 16 * * 4" # Every Thursday at 16 UTC (17 CET/18 CEST)
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9","3.10","3.11","3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
extras:
- ipympl
- plotly
- bokeh
- k3d
- qt
- test
# - mayavi # No wheel for 4.8.2, so does not work with --only-binary
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install using flags
run: |
pip install --only-binary=:all: .[${{ matrix.extras }}]