Skip to content

Commit

Permalink
chore(deps-dev): bump ruff from 0.1.15 to 0.5.0 (#864)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump ruff from 0.1.15 to 0.5.0

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.15 to 0.5.0.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.15...0.5.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* update format

* ruff check

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dominik Moritz <[email protected]>
  • Loading branch information
dependabot[bot] and domoritz authored Jul 1, 2024
1 parent ba53646 commit a9838b7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cover:
lint:
@echo "==> 👕 Linting"
@poetry run ruff format draco jupyterlite pyodide docs
@poetry run ruff .
@poetry run ruff check .

.PHONY: typecheck
typecheck:
Expand Down
39 changes: 20 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ mypy = ">=1.8.0,<1.11"
pandas-stubs = ">=2.1.4.231227,<3.0.0"
pre-commit = ">=3.6.0,<4.0"
pytype = ">=2024.3.19,<2025.0.0"
ruff = ">=0.1.11,<0.2.0"
ruff = ">=0.5.0,<0.6.0"
types-tabulate = "^0.9.0.2"

[tool.poetry.group.docs.dependencies]
Expand Down Expand Up @@ -83,13 +83,13 @@ build-backend = "poetry.core.masonry.api"

[tool.ruff]
line-length = 88
select = [
lint.select = [
"E",
"F",
"W",
# isort
"I001",
]
ignore = ["E501", "W191"]
lint.ignore = ["E501", "W191"]
src = ["draco"]
fix = true

0 comments on commit a9838b7

Please sign in to comment.