MNT: (deps): Bump numpy from 1.26.0 to 2.1.3 in /ci #989
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyPI Tests | |
# We don't want pushes (or PRs) to gh-pages to kick anything off | |
on: | |
push: | |
branches: | |
- main | |
- '[0-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- main | |
- '[0-9]+.[0-9]+.x' | |
concurrency: | |
group: ${{ github.workflow}}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
# | |
# Run all tests on Linux using standard PyPI packages, including minimum requirements | |
# | |
PyPITests: | |
name: ${{ matrix.python-version }} ${{ matrix.dep-versions }} ${{ matrix.no-extras }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10', 3.11, 3.12] | |
dep-versions: [Latest] | |
no-extras: [''] | |
include: | |
- python-version: '3.10' | |
dep-versions: Minimum | |
- python-version: '3.10' | |
dep-versions: Minimum | |
no-extras: 'No Extras' | |
- python-version: 3.12 | |
dep-versions: Latest | |
no-extras: 'No Extras' | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 150 | |
fetch-tags: true | |
- name: Generate minimum dependencies | |
if: ${{ matrix.dep-versions == 'Minimum' }} | |
run: | | |
pip install tomli | |
python << EOF | |
import tomli as tomllib | |
from pathlib import Path | |
# Read our pyproject.toml | |
config = tomllib.load(open('pyproject.toml', 'rb'))['project'] | |
opt_deps = config['optional-dependencies'] | |
# Generate a Minimum dependency file | |
for src, fname in [(config['dependencies'], 'requirements.txt'), | |
(opt_deps['test'], 'test_requirements.txt'), (opt_deps['extras'], 'extra_requirements.txt')]: | |
with (Path('ci') / fname).open('wt') as out: | |
for dep in src: | |
dep = dep.split(';')[0] | |
if 'siphon' not in dep: | |
out.write(dep.replace('>=', '==') + '\n') | |
EOF | |
- name: Install from PyPI | |
uses: Unidata/MetPy/.github/actions/install-pypi@main | |
with: | |
need-extras: ${{ matrix.no-extras != 'No Extras' }} | |
type: 'test' | |
python-version: ${{ matrix.python-version }} | |
need-cartopy: 'false' | |
- name: Run tests | |
uses: Unidata/MetPy/.github/actions/run-tests@main | |
with: | |
run-doctests: 'false' | |
key: pypi-${{ matrix.python-version }}-${{ matrix.dep-versions }}-${{ matrix.no-extras }}-${{ runner.os }} | |
pytest-args: '' | |
codecov: | |
needs: PyPITests | |
name: CodeCov Upload | |
runs-on: ubuntu-latest | |
environment: | |
name: CodeCov | |
timeout-minutes: 2 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Download coverage artifacts | |
uses: actions/download-artifact@v4 | |
- name: Upload coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
name: ${{ github.workflow }} | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |