forked from pool/python-ruff
- update to 0.1.0
* Breaking changes + Unsafe fixes are no longer displayed or applied without opt-in + Drop formatting specific rules from the default set + The deprecated format setting has been removed + The format setting cannot be used to configure the output format, use output-format instead + The RUFF_FORMAT environment variable is ignored, use RUFF_OUTPUT_FORMAT instead + The --format option has been removed from ruff check, use --output-format instead * Rule changes + Extend reimplemented-starmap (FURB140) to catch calls with a single and starred argument + Improve cases covered by RUF015 + Update SIM15 to allow open followed by close + Respect msgspec.Struct default-copy semantics in RUF012 + Add sqlalchemy methods to `flake8-boolean-trap`` exclusion list + Add fix for PLR1714 + Add fix for PIE804 + Add fix for PLC0208 + Add fix for PYI055 + Update non-pep695-type-alias to require --unsafe-fixes outside of stub files + Improve fix message for UP018 + Update PLW3201 to support Enum sunder names * Preview features + Only show warnings for empty preview selectors when enabling rules + Add unnecessary-key-check to simplify key in dct and dct[key] to dct.get(key) + Add assignment-in-assert to prevent walrus expressions in assert statements + [refurb] Add single-item-membership-test (FURB171) + [pylint] Add and-or-ternary (R1706) + New rules are added in preview. * Configuration + Add unsafe-fixes setting OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=5
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: python-ruff
|
||||
Version: 0.0.292
|
||||
Version: 0.1.0
|
||||
Release: 0
|
||||
Summary: An extremely fast Python linter, written in Rust
|
||||
License: MIT
|
||||
@@ -31,7 +31,7 @@ BuildRequires: cargo-packaging
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
ExclusiveArch: %{rust_tier1_arches}
|
||||
%python_subpackages
|
||||
|
||||
@@ -52,10 +52,10 @@ cp %{SOURCE2} .cargo/config
|
||||
%python_clone -a %{buildroot}%{_bindir}/ruff
|
||||
|
||||
%post
|
||||
%python_install_alternative ruff
|
||||
%python_install_alternative ruff
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative ruff
|
||||
%python_uninstall_alternative ruff
|
||||
|
||||
%files %{python_files}
|
||||
%python_alternative %{_bindir}/ruff
|
||||
|
Reference in New Issue
Block a user