Skip to content

Commit

Permalink
Update pylint requirement from ~=2.17.1 to ~=3.0.1 (#2029)
Browse files Browse the repository at this point in the history
* Update pylint requirement from ~=2.17.1 to ~=3.0.1

Updates the requirements on [pylint](https://github.com/pylint-dev/pylint) to permit the latest version.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v2.17.1...v3.0.1)

---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update pylint-django to 2.5.3 (pytlin 3 compatible), disable noisy rules

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Richard Ebeling <[email protected]>
  • Loading branch information
dependabot[bot] and richardebeling authored Oct 23, 2023
1 parent 29b70ce commit 354e54e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ disable = [
"too-many-arguments", # we can't determine a good limit here. reviews should spot bad cases of this.
"duplicate-code", # Mostly imports and test setup.
"cyclic-import", # We use these inside methods that require models from multiple apps. Tests will catch actual errors.
"unsupported-binary-operation", # broken in pylint 2.15: https://github.com/PyCQA/pylint/issues/7381
"unsupported-binary-operation", # broken in pylint: https://github.com/PyCQA/pylint/issues/7381
"use-implicit-booleaness-not-comparison-to-string", # forces us to use less expressive code
"use-implicit-booleaness-not-comparison-to-zero", # forces us to use less expressive code
]

##############################################
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ isort~=5.12.0
model-bakery~=1.16.0
mypy~=1.6.0
openpyxl-stubs~=0.1.25
pylint-django~=2.5.3
pylint~=2.17.1
pylint-django~=2.5.4
pylint~=3.0.1
tblib~=2.0.0
xlrd~=2.0.1

0 comments on commit 354e54e

Please sign in to comment.