14
0
forked from pool/python-ruff

- update to 0.6.8:

* Preview features
   * Remove unnecessary parentheses around match case clauses 
   * Parenthesize overlong if guards in match..case clauses 
   * Detect basic wildcard imports in ruff analyze graph 
   * [pylint] Implement boolean-chained-comparison (R1716) 
 * Rule changes
   * [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs 
   * [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) 
 * Bug fixes
   * Detect tuples bound to variadic positional arguments i.e. *args 
   * Exit gracefully on broken pipe errors 
   * Avoid panic when analyze graph hits broken pipe 
 * Performance
   * Reuse BTreeSets in module resolver 
   * Skip traversal for non-compound statements

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=85
This commit is contained in:
2024-09-26 13:39:56 +00:00
committed by Git OBS Bridge
parent 7f8b6e2985
commit 9ef56fd327
5 changed files with 26 additions and 6 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Sep 26 13:38:35 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.6.8:
* Preview features
* Remove unnecessary parentheses around match case clauses
* Parenthesize overlong if guards in match..case clauses
* Detect basic wildcard imports in ruff analyze graph
* [pylint] Implement boolean-chained-comparison (R1716)
* Rule changes
* [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs
* [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028)
* Bug fixes
* Detect tuples bound to variadic positional arguments i.e. *args
* Exit gracefully on broken pipe errors
* Avoid panic when analyze graph hits broken pipe
* Performance
* Reuse BTreeSets in module resolver
* Skip traversal for non-compound statements
-------------------------------------------------------------------
Mon Sep 23 12:00:29 UTC 2024 - Dirk Müller <dmueller@suse.com>