Skip to content

Pin iris version to avoid issue with dask #137

Pin iris version to avoid issue with dask

Pin iris version to avoid issue with dask #137

Workflow file for this run

name: Test building PyPI package
on:
push:
jobs:
test-build-package:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
-
name: Install pypa/build
run: |
python -m pip install build
-
name: Build binary wheel and source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .