Skip to content

Commit c425400

Browse files
committed
fix
1 parent 66498ce commit c425400

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: astral-sh/setup-uv@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- run: uv sync
26+
- run: uv sync --extra dev
2727
- run: uv run pytest
2828

2929
lint:

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
]
2525

2626
# Intersphinx
27-
intersphinx_mapping = {{
27+
intersphinx_mapping = {
2828
"python": ("https://docs.python.org/3", None),
29-
}}
29+
}
3030

3131
# Napoleon settings (Google style)
3232
napoleon_google_docstring = True

preen/config.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,12 @@ def from_pyproject(cls, project_dir: Path) -> "PreenConfig":
7878

7979
def get_ci_python_versions(self, pyproject_data: Dict[str, Any]) -> List[str]:
8080
"""Get Python versions from explicit preen config or sensible defaults.
81-
81+
8282
Args:
8383
pyproject_data: Parsed pyproject.toml data
84-
84+
8585
Returns:
8686
List of Python version strings for CI matrix
8787
"""
8888
preen_config = pyproject_data.get("tool", {}).get("preen", {})
8989
return preen_config.get("ci_python_versions", ["3.12", "3.13", "3.14"])
90-

0 commit comments

Comments
 (0)