Skip to content

Commit d10cfed

Browse files
committed
Pin linting tools to specific versions
Pinning runs the risk of fossilization, but it's better than chasing down recently added ruff warnings in the middle of trying to write and test some code.
1 parent 2d0e2c1 commit d10cfed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ optional-dependencies.tests = [
4848
]
4949
optional-dependencies.type = [
5050
"ircstream[tests]",
51-
"mypy",
51+
"mypy==1.1.1",
5252
"types-PyYAML",
5353
]
5454
optional-dependencies.lint = [
5555
"ircstream[tests]",
56-
"validate-pyproject[all]",
57-
"ruff",
58-
"black",
59-
"pylint",
56+
"validate-pyproject[all]==0.12.2",
57+
"ruff==0.0.260",
58+
"black==23.3.0",
59+
"pylint==2.17.1",
6060
]
6161
optional-dependencies.dev = [
6262
"ircstream[tests]",

0 commit comments

Comments
 (0)