14
0
forked from pool/python-isort

- update to version 5.1.0:

- isort now throws an exception if an invalid settings path is given (issue #1174).
 - Implemented support for automatic redundant alias removal (issue #1281).
 - Implemented experimental support for floating all imports to the top of a file (issue #1228)
 - Fixed #1178: support for semicolons in decorators.
 - Fixed #1315: Extra newline before comment with -n + --fss.
 - Fixed #1192: -k or --keep-direct-and-as-imports option has been deprecated as it is now always on.
 - Formatting changes implied:
  - Fixed #1280: rewrite of as imports changes the behavior of the imports.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=43
This commit is contained in:
2020-07-15 20:23:05 +00:00
committed by Git OBS Bridge
parent 8497d09f33
commit 01f3c6af96
6 changed files with 21 additions and 7 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Jul 15 20:21:55 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 5.1.0:
- isort now throws an exception if an invalid settings path is given (issue #1174).
- Implemented support for automatic redundant alias removal (issue #1281).
- Implemented experimental support for floating all imports to the top of a file (issue #1228)
- Fixed #1178: support for semicolons in decorators.
- Fixed #1315: Extra newline before comment with -n + --fss.
- Fixed #1192: -k or --keep-direct-and-as-imports option has been deprecated as it is now always on.
- Formatting changes implied:
- Fixed #1280: rewrite of as imports changes the behavior of the imports.
-------------------------------------------------------------------
Tue Jul 14 13:53:34 UTC 2020 - Benjamin Greiner <code@bnavigator.de>