Try different pip install pattern

This commit is contained in:
Simon Willison 2025-12-11 15:20:47 -08:00
commit 270335dda7
3 changed files with 11 additions and 11 deletions

View file

@ -24,7 +24,7 @@ jobs:
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install --group dev
pip install . --group dev
- name: Optionally install numpy
if: matrix.numpy == 1
run: pip install numpy

View file

@ -10,7 +10,7 @@ build:
jobs:
install:
- pip install --upgrade pip
- pip install --group docs
- pip install . --group docs
formats:
- pdf

View file

@ -3,30 +3,30 @@
# Run pytest with supplied options
@test *options:
just run pytest {{options}}
uv run pytest {{options}}
@run *options:
uv run --isolated --with-editable '.[test,mypy,flake8,docs]' -- {{options}}
uv run -- {{options}}
# Run linters: black, flake8, mypy, cog
@lint:
just run black . --check
just run flake8
just run mypy sqlite_utils tests
just run cog --check README.md docs/*.rst
just run codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt
uv run flake8
uv run mypy sqlite_utils tests
uv run cog --check README.md docs/*.rst
uv run --group docs codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt
# Rebuild docs with cog
@cog:
just run cog -r README.md docs/*.rst
uv run --group docs cog -r README.md docs/*.rst
# Serve live docs on localhost:8000
@docs: cog
#!/usr/bin/env bash
cd docs
uv run --isolated --with-editable '../.[test,docs]' make livehtml
uv run --group docs make livehtml
# Apply Black
@black:
just run black .
uv run black .