Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ jobs:
fail-fast: false
matrix:
python-version:
# - "3.9"
# - "3.10"
# - "3.11"
- "3.12"
- "3.13"
- "3.14"
os:
- ubuntu-latest
- windows-latest
Expand Down
6 changes: 5 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ repos:
rev: "v2.16.2"
hooks:
- id: pyproject-fmt
- repo: https://github.com/34j/sync-python-matrix
rev: "d114faa"
hooks:
- id: sync-python-matrix
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.10.6
hooks:
Expand All @@ -61,7 +65,7 @@ repos:
hooks:
- id: codespell

exclude: "_draft.py"
exclude: "_draft.py|12.py"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.19.1
hooks:
Expand Down
32 changes: 0 additions & 32 deletions conftest.py

This file was deleted.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ lint.ignore = [
"D107", # Missing docstring in `__init__`
"D203", # 1 blank line required before class docstring
"D212", # Multi-line docstring summary should start at the first line
"D301", # Use r""" if any backslashes in a docstring
"D401", # First line of docstring should be in imperative mood
"E501",
"S603",
Expand Down
10 changes: 5 additions & 5 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"extends": [
"config:best-practices",
":pinOnlyDevDependencies",
":automergeAll",
":enablePreCommit"
":enablePreCommit",
"github>34j/renovate-scientific-python-spec-0",
"github>renovate-pyproject-fmt/max-supported-version"
],
"packageRules": [
{
"matchPackageNames": ["python"],
"rangeStrategy": "widen",
"separateMultipleMinor": true
"matchDepTypes": ["dependencies"],
"rangeStrategy": "bump"
}
]
}
Loading
Loading