Skip to content

build(deps): update polars requirement from ~=1.14.0 to ~=1.16.0 #128

build(deps): update polars requirement from ~=1.14.0 to ~=1.16.0

build(deps): update polars requirement from ~=1.14.0 to ~=1.16.0 #128

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest" ]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: "macos-13"
python-version: "3.9"
- os: "windows-latest"
python-version: "3.9"
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: pip
- name: Install project
run: |
python -m pip install --upgrade pip
pip install '.[dev,examples]'
- name: Test
run: pytest
- name: Install polars and pandas
run: pip install '.[polars,pandas]'
- name: Test
run: pytest
- name: Run examples
run: python examples/check_timesteps.py tests/data