forked from pool/python-black
- Include change log and docs in package - Update to v20.8b1 OBS-URL: https://build.opensuse.org/request/show/832116 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-black?expand=0&rev=21
118 lines
5.0 KiB
Plaintext
118 lines
5.0 KiB
Plaintext
-------------------------------------------------------------------
|
|
Fri Sep 4 12:19:10 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
- Include change log and docs in package
|
|
- Update to v20.8b1
|
|
* Explicitly depend on Click 7.1.2 or newer as `Black` no longer
|
|
works with versions older than 7.0
|
|
- from v20.8b0
|
|
* Re-implemented support for explicit trailing commas: now it
|
|
works consistently within any bracket pair, including nested
|
|
structures
|
|
* Reindents docstrings when reindenting code around it
|
|
* Show colored diffs
|
|
* Supports Python 3.8 code, e.g. star expressions in return statements
|
|
* No longer normalizes capital R-string prefixes as those have a
|
|
community-accepted meaning
|
|
* Uses exit code 2 when specified configuration file doesn't exit
|
|
* Works on AWS Lambda
|
|
* Added `--force-exclude` argument
|
|
* Removed deprecated `--py36` option
|
|
* Fixed `--diff` output when EOF is encountered
|
|
* Fixed `# fmt: off` handling around decorators
|
|
* Fixed unstable formatting with some `# type: ignore` comments
|
|
* Fixed invalid removal on organizing brackets followed by indexing
|
|
* Introduced `black-primer`, a CI tool that allows us to run
|
|
regression tests against existing open source users of Black
|
|
* Introduced property-based fuzzing to our test suite based on
|
|
Hypothesis and Hypothersmith
|
|
* Implemented experimental and disabled by default long string
|
|
rewrapping hidden under a `--experimental-string-processing`
|
|
flag while it's being worked on; this is an undocumented and
|
|
unsupported feature
|
|
* Vim plugin prefer virtualenv packages over global packages
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Aug 24 21:56:53 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
|
|
|
- update URL
|
|
- python-aiohttp_cors is now available --> install blackd
|
|
- skip python2 test on big endian platforms gh#psf/black#1109
|
|
- drop fix-tests.patch
|
|
|
|
-------------------------------------------------------------------
|
|
Wed May 27 09:36:28 UTC 2020 - Petr Gajdos <pgajdos@suse.com>
|
|
|
|
- %python3_only -> %python_alternative
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Nov 13 11:25:32 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
|
|
|
|
- Add missing Requires
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Nov 11 14:14:38 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
|
|
|
|
- update to 19.10b0
|
|
- add fix-tests.patch to avoid problem during test collection
|
|
- dont distribute 'blackd' as missing deps
|
|
* no obvious changelog
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Jun 4 13:53:31 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Skip randomly failing test (only in OBS)
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Mar 21 15:44:47 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update to 19.3b0:
|
|
* No obvious changelog
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Oct 3 12:40:28 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>
|
|
|
|
- update to 18.9b0
|
|
* numeric literals are now formatted by Black
|
|
* numeric literals are normalized to include _ separators on Python 3.6+ code
|
|
* added --skip-numeric-underscore-normalization to disable the above behavior
|
|
and leave numeric underscores as they were in the input
|
|
* code with _ in numeric literals is recognized as Python 3.6+
|
|
* most letters in numeric literals are lowercased (e.g., in 1e10, 0x01)
|
|
* hexadecimal digits are always uppercased (e.g. 0xBADC0DE)
|
|
* added blackd, see its documentation for more info
|
|
* adjacent string literals are now correctly split into multiple lines
|
|
* trailing comma is now added to single imports that don't fit on a line
|
|
* cache is now populated when --check is successful for a file which
|
|
speeds up consecutive checks of properly formatted unmodified files
|
|
* whitespace at the beginning of the file is now removed
|
|
* fixed mangling pweave and Spyder IDE special comments
|
|
* fixed unstable formatting when unpacking big tuples
|
|
* fixed parsing of __future__ imports with renames
|
|
* fixed scope of # fmt: off when directly preceding yield and other nodes
|
|
* fixed formatting of lambda expressions with default arguments
|
|
* fixed async for statements: Black no longer breaks them into separate lines
|
|
* note: the Vim plugin stopped registering ,= as a default chord
|
|
as it turned out to be a bad idea
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Aug 29 10:31:11 UTC 2018 - tchvatal@suse.com
|
|
|
|
- Raise minimal py required to be 3.6
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Aug 28 21:27:40 UTC 2018 - jengelh@inai.de
|
|
|
|
- Replace all the marketing in the description with something
|
|
substantial.
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Aug 27 19:27:43 UTC 2018 - mimi.vx@gmail.com
|
|
|
|
- disable testsuite for py older than 3.7
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Aug 27 09:08:50 UTC 2018 - tchvatal@suse.com
|
|
|
|
- Code formatter used by pytest/etc
|