Skip to content

Use assert_allclose instead of np.allclose and np.isclose(...).all() #613

Use assert_allclose instead of np.allclose and np.isclose(...).all()

Use assert_allclose instead of np.allclose and np.isclose(...).all() #613

Workflow file for this run

name: build
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency
# https://docs.github.com/en/developers/webhooks-and-events/events/github-event-types#pullrequestevent
# workflow name, PR number (empty on push), push ref (empty on PR)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python-version: [3.8, 3.9, "3.10", "3.11"]
name: ${{ matrix.os }} - ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --progress-bar off --upgrade pip setuptools wheel
python -m pip install --progress-bar off .[build]
- name: Test package install
run: python -c "import pycrostates; print(pycrostates.__version__)"
- name: Remove package install
run: python -m pip uninstall -y pycrostates
- name: Build package
run: python -m build
- name: Install sdist
run: pip install ./dist/*.tar.gz
- name: Test sdist install
run: python -c "import pycrostates; print(pycrostates.__version__)"
- name: Remove sdist install
run: python -m pip uninstall -y pycrostates
- name: Install wheel
run: pip install ./dist/*.whl
- name: Test wheel install
run: python -c "import pycrostates; print(pycrostates.__version__)"
- name: Remove wheel install
run: python -m pip uninstall -y pycrostates