Skip to content

Update version of cibuildwheel action #7

Update version of cibuildwheel action

Update version of cibuildwheel action #7

Workflow file for this run

name: Build and test with development python
on: [push, pull_request]
jobs:
build-linux:
name: Python (${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13.0-alpha.1"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update Pip
run: |
python -m pip install --upgrade pip
- name: Install unstable cftime dependencies via pip
run: |
python -m pip install --pre -r requirements-dev.txt
# get nightly wheels for numpy
python -m pip install \
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple/ \
--trusted-host pypi.anaconda.org \
--no-deps --pre --upgrade \
numpy
- name: Install cftime
run: |
python -m pip install .
- name: Test cftime
run: |
pytest -vv test