Skip to content

Add DataFrame API, Expr DSL, functions module, and SDK ergonomics #390

Add DataFrame API, Expr DSL, functions module, and SDK ergonomics

Add DataFrame API, Expr DSL, functions module, and SDK ergonomics #390

Workflow file for this run

name: Build package
on:
pull_request:
branches:
- trunk
push:
branches:
- trunk
- release-*
tags:
- v*
workflow_dispatch:
permissions:
contents: read
jobs:
Build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11', '3.12', '3.13', '3.14']
name: Build on ${{ matrix.os }} with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install spicepy from pip
run: |
pip install git+https://github.com/spiceai/spicepy