Skip to content

Commit

Permalink
build(deps-dev): bump ruff from 0.5.0 to 0.5.1 (#157)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump ruff from 0.5.0 to 0.5.1

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

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

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

* fix: ignoring S113 rule because using httpx default to 5s

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: TeKrop <[email protected]>
  • Loading branch information
dependabot[bot] and TeKrop authored Jul 8, 2024
1 parent 7463446 commit d53ebcd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 32 deletions.
51 changes: 20 additions & 31 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
pytest-randomly = "^3.15.0"
pytest-xdist = "^3.6.1"
ruff = "^0.5.0"
ruff = "^0.5.1"
pre-commit = "^3.7.1"

[build-system]
Expand Down Expand Up @@ -98,6 +98,7 @@ ignore = [
# General rules to ignore
"B008", # do not perform function calls in argument defaults
"S101", # using "assert" is not a security issue
"S113", # using default timeout of httpx without specifying it
"S311", # there is no cryptographic usage of random here
"RET505", # allow using else after return statement
"PLE1205", # error checking doesn't support {} format
Expand Down

0 comments on commit d53ebcd

Please sign in to comment.