We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00df609 commit 8cd59e9Copy full SHA for 8cd59e9
.pre-commit-config.yaml
@@ -35,7 +35,7 @@ repos:
35
- id: black
36
37
- repo: https://github.com/charliermarsh/ruff-pre-commit
38
- rev: v0.0.252
+ rev: v0.0.253
39
hooks:
40
- id: ruff
41
args: ["--fix"]
jupyterlab/semver.py
@@ -954,7 +954,7 @@ def repl(mob): # noqa PLR0911
954
else:
955
ret = ">=" + M + "." + m + "." + (p or "") + pr + " <" + str(int(M) + 1) + ".0.0"
956
957
- if M == "0":
+ if M == "0": # noqa PLR5501
958
if m == "0":
959
ret = (
960
">="
pyproject.toml
@@ -115,7 +115,7 @@ dev = [
115
"coverage",
116
"hatch",
117
"bump2version",
118
- "ruff==0.0.252",
+ "ruff==0.0.253",
119
"black[jupyter]==23.1.0"
120
]
121
0 commit comments