Skip to content

Commit 95f4668

Browse files
Merge pull request #68 from scikit-hep/eduardo-py3.14
Trivial modernisation bits
2 parents f89ea1a + 95f20e9 commit 95f4668

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ repos:
4444
rev: v3.1.0
4545
hooks:
4646
- id: setup-cfg-fmt
47-
args: [--max-py-version=3.13, --include-version-classifiers]
47+
args: [--max-py-version=3.14, --include-version-classifiers]
4848

4949
# Notebook formatting
5050
- repo: https://github.com/nbQA-dev/nbQA
@@ -93,9 +93,9 @@ repos:
9393
- id: rm-unneeded-f-str
9494

9595
- repo: https://github.com/astral-sh/ruff-pre-commit
96-
rev: "v0.14.0"
96+
rev: "v0.14.1"
9797
hooks:
98-
- id: ruff
98+
- id: ruff-check
9999
types_or: [python, pyi, jupyter]
100100
args: [--fix, --show-fixes, --line-length=120]
101101
# Run the formatter.

noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88

99
DIR = Path(__file__).parent.resolve()
1010

11+
nox.needs_version = ">=2024.4.15"
1112
nox.options.sessions = ["lint", "pylint", "tests"]
13+
nox.options.default_venv_backend = "uv|virtualenv"
1214

1315

1416
@nox.session

0 commit comments

Comments
 (0)