Skip to content

fixed proximity intermediate large numpy array problem and proximity output coords are now lazy if input is dask array #233

fixed proximity intermediate large numpy array problem and proximity output coords are now lazy if input is dask array

fixed proximity intermediate large numpy array problem and proximity output coords are now lazy if input is dask array #233

Workflow file for this run

name: pytest
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python: [3.12, 3.13, 3.14]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python }}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run pytest
run: pytest