build(deps): bump aiohttp from 3.14.1 to 3.14.3 #241
Workflow file for this run
This file contains hidden or 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: docs build | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - "pycytominer/**" | |
| - ".readthedocs.yml" | |
| - ".github/workflows/docs-build.yml" | |
| - ".github/actions/setup-env/**" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - "README.md" | |
| - "CONTRIBUTING.md" | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-docs-with-sphinx: | |
| name: Sphinx build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v7 | |
| with: | |
| # Full history required for dunamai to derive the version from git tags | |
| fetch-depth: 0 | |
| - name: Install pandoc | |
| # nbsphinx requires pandoc to convert Jupyter notebooks during the Sphinx build | |
| uses: pandoc/actions/setup@v1 | |
| - name: Setup Python and uv | |
| uses: ./.github/actions/setup-env | |
| with: | |
| python-version: "3.11" | |
| cache-pre-commit: false | |
| cache-venv: true | |
| setup-uv: true | |
| install-deps: true | |
| - name: Build docs | |
| run: uv run sphinx-build ./docs/ ./docs/build |