Skip to content

Commit

Permalink
chore: update rich requirement from <13.9.0,>=13.5.2 to >=13.5.2,<13.…
Browse files Browse the repository at this point in the history
…10.0 (#110)

* chore: update rich requirement

Updates the requirements on [rich](https://github.com/Textualize/rich) to permit the latest version.
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.5.2...v13.9.1)

---
updated-dependencies:
- dependency-name: rich
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* ci: Update pylint

* ci: Moar ignore

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: gmuloc <gmulocher@arista.com>
  • Loading branch information
dependabot[bot] and gmuloc authored Oct 2, 2024
1 parent a93c89e commit 210bca4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ repos:
types: [python]

- repo: https://github.com/pycqa/pylint
rev: v3.2.7
rev: v3.3.1
hooks:
- id: pylint # Use pylintrc file in repository
name: Check for Linting error on Python files
Expand Down
2 changes: 1 addition & 1 deletion j2lint/linter/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
rule: Rule,
message: str | None = None,
) -> None:
# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
self.line_number = line_number
self.line = line
self.filename = filename
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
keywords = ["j2lint", "linter", "jinja", "lint"]
dependencies = [
"jinja2>=3.0",
"rich>=13.5.2,<13.9.0",
"rich>=13.5.2,<13.10.0",
]
requires-python = ">=3.8"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
j2lint_default_rules_string,
)

# pylint: disable=fixme, too-many-arguments
# pylint: disable=fixme, too-many-arguments, too-many-positional-arguments

# Fixed size console for tests output
CONSOLE.size = ConsoleDimensions(width=80, height=74)
Expand Down

0 comments on commit 210bca4

Please sign in to comment.