14
0
forked from pool/python-black

- update to 23.10.1:

* Maintanence release to get a fix out for GitHub Action edge
    case (#3957)
  * Fix merging implicit multiline strings that have inline
    comments (#3956)
  * Allow empty first line after block open before a comment or
    compound statement (#3967)
  * Fix comments getting removed from inside parenthesized
    strings (#3909)
  * Fix long lines with power operators getting split before the
    line length (#3942)
  * Long type hints are now wrapped in parentheses and properly
    indented when split across multiple lines (#3899)
  * Magic trailing commas are now respected in return types.
  * Require one empty line after module-level docstrings. (#3932)
  * Treat raw triple-quoted strings as docstrings (#3947)
  * Fix bug where attributes named `type` were not accepted
    inside `match` statements
  * Add support for PEP 695 type aliases containing lambdas and
    other unusual expressions
  * Black no longer attempts to provide special errors for
    attempting to format Python 2 code (#3933)
  * Black will more consistently print stacktraces on internal
    errors in verbose mode

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-black?expand=0&rev=50
This commit is contained in:
2023-10-24 16:06:46 +00:00
committed by Git OBS Bridge
parent 8e872cac14
commit 1d5176a913
4 changed files with 32 additions and 4 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Oct 24 16:05:14 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 23.10.1:
* Maintanence release to get a fix out for GitHub Action edge
case (#3957)
* Fix merging implicit multiline strings that have inline
comments (#3956)
* Allow empty first line after block open before a comment or
compound statement (#3967)
* Fix comments getting removed from inside parenthesized
strings (#3909)
* Fix long lines with power operators getting split before the
line length (#3942)
* Long type hints are now wrapped in parentheses and properly
indented when split across multiple lines (#3899)
* Magic trailing commas are now respected in return types.
* Require one empty line after module-level docstrings. (#3932)
* Treat raw triple-quoted strings as docstrings (#3947)
* Fix bug where attributes named `type` were not accepted
inside `match` statements
* Add support for PEP 695 type aliases containing lambdas and
other unusual expressions
* Black no longer attempts to provide special errors for
attempting to format Python 2 code (#3933)
* Black will more consistently print stacktraces on internal
errors in verbose mode
-------------------------------------------------------------------
Tue Sep 19 14:51:16 UTC 2023 - Dirk Müller <dmueller@suse.com>