Skip to content

Commit f4e01d8

Browse files
deps: limit linters version
Version lock is based on a latest version available for Python 3.6. `<=` comparison was chosen due to possible dependencies incompatibility. For example, using `pylint ~= 3.0.0a4` with `flake8 ~= 5.0.4` results in conflicting dependencies: pylint 3.0.0a4 depends on mccabe<0.7 and >=0.6 flake8 5.0.4 depends on mccabe<0.8.0 and >=0.7.0
1 parent c89330c commit f4e01d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
git+https://github.com/baztian/dbapi-compliance.git@ea7cb1b4#egg=dbapi-compliance
22
pyyaml==6.0
33
importlib-metadata >= 1.0 ; python_version < '3.8'
4-
pylint
5-
flake8
6-
codespell
4+
pylint <= 3.0.0a4
5+
flake8 <= 5.0.4
6+
codespell <= 2.2

0 commit comments

Comments
 (0)