Skip to content

Bump requests from 2.32.5 to 2.33.0 #791

Bump requests from 2.32.5 to 2.33.0

Bump requests from 2.32.5 to 2.33.0 #791

Workflow file for this run

---
name: testing
on:
push:
workflow_dispatch: # allows you to trigger manually
jobs:
test_pytest:
name: Test remote_climate_data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.12"
- name: Install dependencies
run: uv sync --all-extras
- name: Run tests
run: uv run pytest -n auto --durations=20
test_notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.12"
- name: Install dependencies
run: uv sync --all-extras
- name: Test notebooks
run: uv run jupyter nbconvert --inplace --execute notebooks/demo.ipynb