From 58e814bd5bfb02451d405556a1c6ae42ddda6ab74f5aaedb60829a43ad47cee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20S=C3=BAkup?= Date: Sun, 17 Nov 2024 01:37:16 +0000 Subject: [PATCH] - update to 0.7.4 * Preview features * [flake8-datetimez] Detect usages of datetime.max/datetime.min (DTZ901) * [flake8-logging] Implement root-logger-calls (LOG015) * [flake8-no-pep420] Detect empty implicit namespace packages (INP001) * [flake8-pyi] Add "replace with Self" fix (PYI019) * [perflint] Implement quick-fix for manual-list-comprehension (PERF401) * [pylint] Implement shallow-copy-environ (W1507) * [ruff] Implement none-not-at-end-of-union (RUF036) * [ruff] Implementation unsafe-markup-call from flake8-markupsafe plugin (RUF035) * [ruff] Report problems for attrs dataclasses (RUF008, RUF009) * Rule changes * [flake8-boolean-trap] Exclude dunder methods that define operators (FBT001) * [flake8-pyi] Add "replace with Self" fix (PYI034) * [flake8-pyi] Always autofix duplicate-union-members (PYI016) * [flake8-pyi] Improve autofix for nested and mixed type unions for unnecessary-type-union (PYI055) * [flake8-pyi] Mark fix as unsafe when type annotation contains comments for duplicate-literal-member (PYI062) * Server * Use the current working directory to resolve settings from ruff.configuration * Bug fixes * Avoid conflicts between PLC014 (useless-import-alias) and I002 (missing-required-import) by considering lint.isort.required-imports for PLC014 * [flake8-type-checking] Skip quoting annotation if it becomes invalid syntax (TCH001) * [flake8-pyi] Avoid using typing.Self in stub files pre-Python 3.11 (PYI034) * [flake8-pytest-style] Flag pytest.raises call with keyword argument expected_exception (PT011) * [flake8-simplify] Infer "unknown" truthiness for literal iterables whose items are all unpacks (SIM222) * [flake8-type-checking] Fix false positives for typing.Annotated (TCH001) * [pylint] Allow await at the top-level scope of a notebook (PLE1142) * [pylint] Fix miscellaneous issues in await-outside-async detection (PLE1142) * [pyupgrade Avoid applying PEP 646 rewrites in invalid contexts ()UP044) * [pyupgrade] Detect permutations in redundant open modes (UP015) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=102 --- python-ruff.changes | 42 ++++++++++++++++++++++++++++++++++++++++++ python-ruff.spec | 2 +- ruff-0.7.3.tar.gz | 3 --- ruff-0.7.4.tar.gz | 3 +++ vendor.tar.zst | 4 ++-- 5 files changed, 48 insertions(+), 6 deletions(-) delete mode 100644 ruff-0.7.3.tar.gz create mode 100644 ruff-0.7.4.tar.gz diff --git a/python-ruff.changes b/python-ruff.changes index 164c12f..4e28246 100644 --- a/python-ruff.changes +++ b/python-ruff.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Sun Nov 17 01:34:46 UTC 2024 - Ondřej Súkup + +- update to 0.7.4 + * Preview features + * [flake8-datetimez] Detect usages of datetime.max/datetime.min (DTZ901) + * [flake8-logging] Implement root-logger-calls (LOG015) + * [flake8-no-pep420] Detect empty implicit namespace packages (INP001) + * [flake8-pyi] Add "replace with Self" fix (PYI019) + * [perflint] Implement quick-fix for manual-list-comprehension (PERF401) + * [pylint] Implement shallow-copy-environ (W1507) + * [ruff] Implement none-not-at-end-of-union (RUF036) + * [ruff] Implementation unsafe-markup-call from flake8-markupsafe plugin (RUF035) + * [ruff] Report problems for attrs dataclasses (RUF008, RUF009) + * Rule changes + * [flake8-boolean-trap] Exclude dunder methods that define operators (FBT001) + * [flake8-pyi] Add "replace with Self" fix (PYI034) + * [flake8-pyi] Always autofix duplicate-union-members (PYI016) + * [flake8-pyi] Improve autofix for nested and mixed type unions for unnecessary-type-union (PYI055) + * [flake8-pyi] Mark fix as unsafe when type annotation contains comments for duplicate-literal-member (PYI062) + * Server + * Use the current working directory to resolve settings from ruff.configuration + * Bug fixes + * Avoid conflicts between PLC014 (useless-import-alias) and I002 (missing-required-import) by considering lint.isort.required-imports for PLC014 + * [flake8-type-checking] Skip quoting annotation if it becomes invalid syntax (TCH001) + * [flake8-pyi] Avoid using typing.Self in stub files pre-Python 3.11 (PYI034) + * [flake8-pytest-style] Flag pytest.raises call with keyword argument expected_exception (PT011) + * [flake8-simplify] Infer "unknown" truthiness for literal iterables whose items are all unpacks (SIM222) + * [flake8-type-checking] Fix false positives for typing.Annotated (TCH001) + * [pylint] Allow await at the top-level scope of a notebook (PLE1142) + * [pylint] Fix miscellaneous issues in await-outside-async detection (PLE1142) + * [pyupgrade Avoid applying PEP 646 rewrites in invalid contexts ()UP044) + * [pyupgrade] Detect permutations in redundant open modes (UP015) + * [refurb] Avoid triggering hardcoded-string-charset for reordered sets (FURB156) + * [refurb] Further special cases added to verbose-decimal-constructor (FURB157) + * [refurb] Use UserString instead of non-existent UserStr (FURB189) + * [ruff] Avoid treating lowercase letters as # noqa codes (RUF100) + * [ruff] Do not report when Optional has no type arguments (RUF013) + * Documentation + * Add "Notebook behavior" section for F704, PLE1142 + * Document comment policy around fix safety + ------------------------------------------------------------------- Mon Nov 11 13:34:06 UTC 2024 - Ondřej Súkup diff --git a/python-ruff.spec b/python-ruff.spec index 29d533b..aeca56d 100644 --- a/python-ruff.spec +++ b/python-ruff.spec @@ -19,7 +19,7 @@ %bcond_without libalternatives %{?sle15_python_module_pythons} Name: python-ruff -Version: 0.7.3 +Version: 0.7.4 Release: 0 Summary: An extremely fast Python linter, written in Rust License: MIT diff --git a/ruff-0.7.3.tar.gz b/ruff-0.7.3.tar.gz deleted file mode 100644 index 1c353a2..0000000 --- a/ruff-0.7.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1d1ba2e40b6e71a61b063354d04be669ab0d39c352461f3d789cac68b54a313 -size 3243664 diff --git a/ruff-0.7.4.tar.gz b/ruff-0.7.4.tar.gz new file mode 100644 index 0000000..d78fffa --- /dev/null +++ b/ruff-0.7.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd12e35031f5af6b9b93715d8c4f40360070b2041f81273d0527683d5708fce2 +size 3275547 diff --git a/vendor.tar.zst b/vendor.tar.zst index a82cc57..544c2db 100644 --- a/vendor.tar.zst +++ b/vendor.tar.zst @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a5e22dff70d7098288cf2d5b4b9829836fd1a1d2267fb11126c0854cf400b8e -size 29665422 +oid sha256:7ad22279b6b163db66dd25e89ca6ef0df6302b98da29293658e05e839a788631 +size 29683805