15
0
forked from pool/python-black

Accepting request 1286633 from devel:languages:python

- Skip test_simple_format tests, which is failing with 3.13.5
  (gh#psf/black#4698).

- Update to 24.8.0
  * Fix regression where certain complex f-strings failed to parse
  * Fix bad performance on certain complex string literals
  * Fix crash involving indented dummy functions containing newlines
  * Add support for type parameter defaults, a new syntactic feature added
    to Python 3.13 by PEP 696
  * Fix unwanted crashes caused by AST equivalency check
  * Stop moving multiline strings to a new line unless inside brackets

OBS-URL: https://build.opensuse.org/request/show/1286633
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-black?expand=0&rev=33
This commit is contained in:
2025-06-18 20:28:43 +00:00
committed by Git OBS Bridge
2 changed files with 16 additions and 8 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jun 18 07:27:52 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
- Skip test_simple_format tests, which is failing with 3.13.5
(gh#psf/black#4698).
-------------------------------------------------------------------
Mon May 12 11:01:03 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
@@ -48,7 +54,7 @@ Mon Feb 10 09:37:29 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
-------------------------------------------------------------------
Fri Sep 27 01:22:37 UTC 2024 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 24.8.0
- Update to 24.8.0
Stable style
* Fix crash when # fmt: off is used before a closing parenthesis
or bracket. (#4363)
@@ -73,17 +79,17 @@ Fri Sep 27 01:22:37 UTC 2024 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
Sun Jul 21 16:03:44 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- update to 24.4.2
* Fix regression where certain complex f-strings failed to parse
* Fix bad performance on certain complex string literals
* Fix regression where certain complex f-strings failed to parse
* Fix bad performance on certain complex string literals
- update to 24.4.1
* Add support for the new Python 3.12 f-string syntax introduced by PEP 701
* Fix crash involving indented dummy functions containing newlines
* Add support for type parameter defaults, a new syntactic feature added
to Python 3.13 by PEP 696
* Fix crash involving indented dummy functions containing newlines
* Add support for type parameter defaults, a new syntactic feature added
to Python 3.13 by PEP 696
- update to 24.4.0
* Fix unwanted crashes caused by AST equivalency check
* Fix unwanted crashes caused by AST equivalency check
* if guards in case blocks are now wrapped in parentheses when the line is too long.
* Stop moving multiline strings to a new line unless inside brackets
* Stop moving multiline strings to a new line unless inside brackets
-------------------------------------------------------------------

View File

@@ -96,6 +96,8 @@ export PATH=$PATH:~/bin
# test_expression_diff - sometimes fails on async timing in OBS
# test_bpo_2142_workaround fails on arm
skiptests="test_expression_diff or test_bpo_2142_workaround"
# gh#psf/black#4698
skiptests+=" or test_simple_format"
%pytest -k "not ($skiptests)"
%pre