Remove poethepoet, use direct commands in CI

Replace all poe task runner usage with direct pytest/sphinx/ruff
commands. Remove poethepoet dependency and [tool.poe.tasks] config.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-22 07:50:32 -04:00
parent 0cbcaf9c4f
commit 8f979719a0
4 changed files with 17 additions and 71 deletions
+6 -15
View File
@@ -14,13 +14,8 @@ concurrency:
jobs:
documentation:
name: "Documentation: Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.13"]
name: "Documentation"
runs-on: ubuntu-latest
env:
UV_SYSTEM_PYTHON: true
@@ -30,25 +25,21 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.13"
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
cache-suffix: ${{ matrix.python-version }}
cache-dependency-glob: |
pyproject.toml
- name: Install package and documentation dependencies
run: |
uv pip install '.[develop,docs]'
run: uv pip install '.[docs]'
- name: Run link checker
run: |
poe docs-linkcheck
run: sphinx-build -W --keep-going -b linkcheck docs/source docs/build
- name: Build static HTML documentation
run: |
poe docs-html
run: sphinx-build -W --keep-going docs/source docs/build
+5 -4
View File
@@ -49,7 +49,8 @@ jobs:
cache-dependency-glob: |
pyproject.toml
- name: Install and validate package
run: |
uv pip install '.[develop,test]'
poe check
- name: Install package
run: uv pip install '.[develop,test]'
- name: Run tests
run: pytest