14
0
forked from pool/python-ruff

- update to 0.7.1

* Preview features
   * Fix E221 and E222 to flag missing or extra whitespace around == operator 
   * Formatter: Alternate quotes for strings inside f-strings in preview 
   * Formatter: Join implicit concatenated strings when they fit on a line 
   * [pylint] Restrict iteration-over-set to only work on sets of literals (PLC0208) 
 * Rule changes
   * [flake8-type-checking] Support auto-quoting when annotations contain quotes 
 * Server
   * Avoid indexing the workspace for single-file mode 
 * Bug fixes
   * Make ARG002 compatible with EM101 when raising NotImplementedError

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=93
This commit is contained in:
2024-10-25 19:58:57 +00:00
committed by Git OBS Bridge
parent 84bd21ad2b
commit 1be6a1260e
5 changed files with 22 additions and 6 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Oct 25 19:55:52 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.7.1
* Preview features
* Fix E221 and E222 to flag missing or extra whitespace around == operator
* Formatter: Alternate quotes for strings inside f-strings in preview
* Formatter: Join implicit concatenated strings when they fit on a line
* [pylint] Restrict iteration-over-set to only work on sets of literals (PLC0208)
* Rule changes
* [flake8-type-checking] Support auto-quoting when annotations contain quotes
* Server
* Avoid indexing the workspace for single-file mode
* Bug fixes
* Make ARG002 compatible with EM101 when raising NotImplementedError
-------------------------------------------------------------------
Mon Oct 21 19:19:25 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>