Bump ruff from 0.5.7 to 0.6.1 (#1579)
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Wed, 21 Aug 2024 16:02:49 +0000 (18:02 +0200)
committerGitHub <noreply@github.com>
Wed, 21 Aug 2024 16:02:49 +0000 (18:02 +0200)
* Bump ruff from 0.5.7 to 0.6.1

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

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

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marcel van der Veldt <m.vanderveldt@outlook.com>
pyproject.toml

index 31d59d578f563310120ce4a75243f639f626bdd5..a598ac0d1839b923e8c48578748881b5cedf1251 100644 (file)
@@ -53,7 +53,7 @@ test = [
   "pytest-cov==5.0.0",
   "syrupy==4.6.1",
   "tomli==2.0.1",
-  "ruff==0.5.7",
+  "ruff==0.6.1",
 ]
 
 [project.scripts]
@@ -265,6 +265,8 @@ ignore = [
   "RUF009",
   "ANN204",
   "PTH202",
+  "ASYNC109",
+  "ASYNC110",
 ]
 
 select = ["ALL"]