Skip to content

Rename module (cf. nemo_timeseries.py) #149

Rename module (cf. nemo_timeseries.py)

Rename module (cf. nemo_timeseries.py) #149

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.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/ .