From dfe3e2782297b4d5d17322243b2f902e82b34f7d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 27 Jan 2025 14:04:21 -0600
Subject: [PATCH] chore(deps-dev): Bump ruff from 0.9.2 to 0.9.3 in the
development-dependencies group (#365)
Bumps the development-dependencies group with 1 update:
[ruff](https://github.com/astral-sh/ruff).
Updates `ruff` from 0.9.2 to 0.9.3
Release notes
Sourced from ruff's
releases.
0.9.3
Release Notes
Preview features
- [
airflow
] Argument fail_stop
in DAG has
been renamed as fail_fast
(AIR302
) (#15633)
- [
airflow
] Extend AIR303
with more symbols
(#15611)
- [
flake8-bandit
] Report all references to suspicious
functions (S3
) (#15541)
- [
flake8-pytest-style
] Do not emit diagnostics for empty
for
loops (PT012
, PT031
) (#15542)
- [
flake8-simplify
] Avoid double negations
(SIM103
) (#15562)
- [
pyflakes
] Fix infinite loop with unused local import
in __init__.py
(F401
) (#15517)
- [
pylint
] Do not report methods with only one
EM101
-compatible raise
(PLR6301
)
(#15507)
- [
pylint
] Implement
redefined-slots-in-subclass
(W0244
) (#9640)
- [
pyupgrade
] Add rules to use PEP 695 generics in
classes and functions (UP046
, UP047
) (#15565,
#15659)
- [
refurb
] Implement for-loop-writes
(FURB122
) (#10630)
- [
ruff
] Implement needless-else
clause
(RUF047
) (#15051)
- [
ruff
] Implement starmap-zip
(RUF058
) (#15483)
Rule changes
- [
flake8-bugbear
] Do not raise error if keyword argument
is present and target-python version is less or equals than 3.9
(B903
) (#15549)
- [
flake8-comprehensions
] strip parentheses around
generators in unnecessary-generator-set
(C401
)
(#15553)
- [
flake8-pytest-style
] Rewrite references to
.exception
(PT027
) (#15680)
- [
flake8-simplify
] Mark fixes as unsafe
(SIM201
, SIM202
) (#15626)
- [
flake8-type-checking
] Fix some safe fixes being
labeled unsafe (TC006
,TC008
) (#15638)
- [
isort
] Omit trailing whitespace in
unsorted-imports
(I001
) (#15518)
- [
pydoclint
] Allow ignoring one line docstrings for
DOC
rules (#13302)
- [
pyflakes
] Apply redefinition fixes by source code
order (F811
) (#15575)
- [
pyflakes
] Avoid removing too many imports in
redefined-while-unused
(F811
) (#15585)
- [
pyflakes
] Group redefinition fixes by source statement
(F811
) (#15574)
- [
pylint
] Include name of base class in message for
redefined-slots-in-subclass
(W0244
) (#15559)
- [
ruff
] Update fix for RUF055
to use
var == value
(#15605)
Formatter
- Fix bracket spacing for single-element tuples in f-string
expressions (#15537)
- Fix unstable f-string formatting for expressions containing a
trailing comma (#15545)
Performance
- Avoid quadratic membership check in import fixes (#15576)
Server
- Allow
unsafe-fixes
settings for code actions (#15666)
Bug fixes
- [
flake8-bandit
] Add missing single-line/dotall regex
flag (S608
) (#15654)
- [
flake8-import-conventions
] Fix infinite loop between
ICN001
and I002
(ICN001
) (#15480)
... (truncated)
Changelog
Sourced from ruff's
changelog.
0.9.3
Preview features
- [
airflow
] Argument fail_stop
in DAG has
been renamed as fail_fast
(AIR302
) (#15633)
- [
airflow
] Extend AIR303
with more symbols
(#15611)
- [
flake8-bandit
] Report all references to suspicious
functions (S3
) (#15541)
- [
flake8-pytest-style
] Do not emit diagnostics for empty
for
loops (PT012
, PT031
) (#15542)
- [
flake8-simplify
] Avoid double negations
(SIM103
) (#15562)
- [
pyflakes
] Fix infinite loop with unused local import
in __init__.py
(F401
) (#15517)
- [
pylint
] Do not report methods with only one
EM101
-compatible raise
(PLR6301
)
(#15507)
- [
pylint
] Implement
redefined-slots-in-subclass
(W0244
) (#9640)
- [
pyupgrade
] Add rules to use PEP 695 generics in
classes and functions (UP046
, UP047
) (#15565,
#15659)
- [
refurb
] Implement for-loop-writes
(FURB122
) (#10630)
- [
ruff
] Implement needless-else
clause
(RUF047
) (#15051)
- [
ruff
] Implement starmap-zip
(RUF058
) (#15483)
Rule changes
- [
flake8-bugbear
] Do not raise error if keyword argument
is present and target-python version is less or equals than 3.9
(B903
) (#15549)
- [
flake8-comprehensions
] strip parentheses around
generators in unnecessary-generator-set
(C401
)
(#15553)
- [
flake8-pytest-style
] Rewrite references to
.exception
(PT027
) (#15680)
- [
flake8-simplify
] Mark fixes as unsafe
(SIM201
, SIM202
) (#15626)
- [
flake8-type-checking
] Fix some safe fixes being
labeled unsafe (TC006
,TC008
) (#15638)
- [
isort
] Omit trailing whitespace in
unsorted-imports
(I001
) (#15518)
- [
pydoclint
] Allow ignoring one line docstrings for
DOC
rules (#13302)
- [
pyflakes
] Apply redefinition fixes by source code
order (F811
) (#15575)
- [
pyflakes
] Avoid removing too many imports in
redefined-while-unused
(F811
) (#15585)
- [
pyflakes
] Group redefinition fixes by source statement
(F811
) (#15574)
- [
pylint
] Include name of base class in message for
redefined-slots-in-subclass
(W0244
) (#15559)
- [
ruff
] Update fix for RUF055
to use
var == value
(#15605)
Formatter
- Fix bracket spacing for single-element tuples in f-string
expressions (#15537)
- Fix unstable f-string formatting for expressions containing a
trailing comma (#15545)
Performance
- Avoid quadratic membership check in import fixes (#15576)
Server
- Allow
unsafe-fixes
settings for code actions (#15666)
Bug fixes
- [
flake8-bandit
] Add missing single-line/dotall regex
flag (S608
) (#15654)
- [
flake8-import-conventions
] Fix infinite loop between
ICN001
and I002
(ICN001
) (#15480)
- [
flake8-simplify
] Do not emit diagnostics for
expressions inside string type annotations (SIM222
,
SIM223
) (#15405)
... (truncated)
Commits
9058937
Fix grep for version number in docker build (#15699)
b5ffb40
Bump version to 0.9.3 (#15698)
cffd186
Preserve raw string prefix and escapes (#15694)
569060f
[flake8-pytest-style
] Rewrite references to
.exception
(PT027
) (#15680)
15394a8
[red-knot] MDTests: Do not depend on precise public-symbol type
inference (#1...
fc2ebea
[red-knot] Make infer.rs
unit tests independent of public
symbol inference ...
43160b4
Tidy knot CLI tests (#15685)
0173738
[red-knot] Port comprehension tests to Markdown (#15688)
05ea77b
Create Unknown rule diagnostics with a source range (#15648)
1e790d3
[red-knot] Port 'deferred annotations' unit tests to Markdown (#15686)
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ruff&package-manager=pip&previous-version=0.9.2&new-version=0.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
poetry.lock | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/poetry.lock b/poetry.lock
index 4da22b8..aa11d77 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -976,29 +976,29 @@ files = [
[[package]]
name = "ruff"
-version = "0.9.2"
+version = "0.9.3"
description = "An extremely fast Python linter and code formatter, written in Rust."
optional = false
python-versions = ">=3.7"
files = [
- {file = "ruff-0.9.2-py3-none-linux_armv6l.whl", hash = "sha256:80605a039ba1454d002b32139e4970becf84b5fee3a3c3bf1c2af6f61a784347"},
- {file = "ruff-0.9.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b9aab82bb20afd5f596527045c01e6ae25a718ff1784cb92947bff1f83068b00"},
- {file = "ruff-0.9.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:fbd337bac1cfa96be615f6efcd4bc4d077edbc127ef30e2b8ba2a27e18c054d4"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82b35259b0cbf8daa22a498018e300b9bb0174c2bbb7bcba593935158a78054d"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b6a9701d1e371bf41dca22015c3f89769da7576884d2add7317ec1ec8cb9c3c"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9cc53e68b3c5ae41e8faf83a3b89f4a5d7b2cb666dff4b366bb86ed2a85b481f"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:8efd9da7a1ee314b910da155ca7e8953094a7c10d0c0a39bfde3fcfd2a015684"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3292c5a22ea9a5f9a185e2d131dc7f98f8534a32fb6d2ee7b9944569239c648d"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a605fdcf6e8b2d39f9436d343d1f0ff70c365a1e681546de0104bef81ce88df"},
- {file = "ruff-0.9.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c547f7f256aa366834829a08375c297fa63386cbe5f1459efaf174086b564247"},
- {file = "ruff-0.9.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:d18bba3d3353ed916e882521bc3e0af403949dbada344c20c16ea78f47af965e"},
- {file = "ruff-0.9.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b338edc4610142355ccf6b87bd356729b62bf1bc152a2fad5b0c7dc04af77bfe"},
- {file = "ruff-0.9.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:492a5e44ad9b22a0ea98cf72e40305cbdaf27fac0d927f8bc9e1df316dcc96eb"},
- {file = "ruff-0.9.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:af1e9e9fe7b1f767264d26b1075ac4ad831c7db976911fa362d09b2d0356426a"},
- {file = "ruff-0.9.2-py3-none-win32.whl", hash = "sha256:71cbe22e178c5da20e1514e1e01029c73dc09288a8028a5d3446e6bba87a5145"},
- {file = "ruff-0.9.2-py3-none-win_amd64.whl", hash = "sha256:c5e1d6abc798419cf46eed03f54f2e0c3adb1ad4b801119dedf23fcaf69b55b5"},
- {file = "ruff-0.9.2-py3-none-win_arm64.whl", hash = "sha256:a1b63fa24149918f8b37cef2ee6fff81f24f0d74b6f0bdc37bc3e1f2143e41c6"},
- {file = "ruff-0.9.2.tar.gz", hash = "sha256:b5eceb334d55fae5f316f783437392642ae18e16dcf4f1858d55d3c2a0f8f5d0"},
+ {file = "ruff-0.9.3-py3-none-linux_armv6l.whl", hash = "sha256:7f39b879064c7d9670197d91124a75d118d00b0990586549949aae80cdc16624"},
+ {file = "ruff-0.9.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:a187171e7c09efa4b4cc30ee5d0d55a8d6c5311b3e1b74ac5cb96cc89bafc43c"},
+ {file = "ruff-0.9.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c59ab92f8e92d6725b7ded9d4a31be3ef42688a115c6d3da9457a5bda140e2b4"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2dc153c25e715be41bb228bc651c1e9b1a88d5c6e5ed0194fa0dfea02b026439"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:646909a1e25e0dc28fbc529eab8eb7bb583079628e8cbe738192853dbbe43af5"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a5a46e09355695fbdbb30ed9889d6cf1c61b77b700a9fafc21b41f097bfbba4"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c4bb09d2bbb394e3730d0918c00276e79b2de70ec2a5231cd4ebb51a57df9ba1"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96a87ec31dc1044d8c2da2ebbed1c456d9b561e7d087734336518181b26b3aa5"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bb7554aca6f842645022fe2d301c264e6925baa708b392867b7a62645304df4"},
+ {file = "ruff-0.9.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cabc332b7075a914ecea912cd1f3d4370489c8018f2c945a30bcc934e3bc06a6"},
+ {file = "ruff-0.9.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:33866c3cc2a575cbd546f2cd02bdd466fed65118e4365ee538a3deffd6fcb730"},
+ {file = "ruff-0.9.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:006e5de2621304c8810bcd2ee101587712fa93b4f955ed0985907a36c427e0c2"},
+ {file = "ruff-0.9.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ba6eea4459dbd6b1be4e6bfc766079fb9b8dd2e5a35aff6baee4d9b1514ea519"},
+ {file = "ruff-0.9.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:90230a6b8055ad47d3325e9ee8f8a9ae7e273078a66401ac66df68943ced029b"},
+ {file = "ruff-0.9.3-py3-none-win32.whl", hash = "sha256:eabe5eb2c19a42f4808c03b82bd313fc84d4e395133fb3fc1b1516170a31213c"},
+ {file = "ruff-0.9.3-py3-none-win_amd64.whl", hash = "sha256:040ceb7f20791dfa0e78b4230ee9dce23da3b64dd5848e40e3bf3ab76468dcf4"},
+ {file = "ruff-0.9.3-py3-none-win_arm64.whl", hash = "sha256:800d773f6d4d33b0a3c60e2c6ae8f4c202ea2de056365acfa519aa48acf28e0b"},
+ {file = "ruff-0.9.3.tar.gz", hash = "sha256:8293f89985a090ebc3ed1064df31f3b4b56320cdfcec8b60d3295bddb955c22a"},
]
[[package]]