15
0

- update to 6.0.0:

* Drop isort 4.x support.
  * Add support for flake8 6.0.0.
  * Add `--isort-no-skip-gitignore` option to allow temporarily overriding
    the set
  value of isort's `skip_gitignore` option with `False`. This can cause
  flake8-isort to run significantly faster at the cost of making flake8-isort's
  behavior differ slightly from the behavior of `isort --check`. [gschaffner]
  * Fix broken `add_options` method [casperdcl]
  * Improve the config option is added and read back. [gforcada]
  * Bump plugin version. [gforcada]
  * Update dependencies. [gforcada]
  * Revamp GitHub actions. [gforcada]
  * Drop python 3.6, and add python 3.10. [gforcada]
  * Use linters and formatters to keep code sane and beautiful. [gforcada]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flake8-isort?expand=0&rev=8
This commit is contained in:
2023-01-02 16:49:27 +00:00
committed by Git OBS Bridge
parent 8cede60c04
commit da2fcb0130
4 changed files with 27 additions and 8 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Jan 2 16:41:48 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 6.0.0:
* Drop isort 4.x support.
* Add support for flake8 6.0.0.
* Add `--isort-no-skip-gitignore` option to allow temporarily overriding
the set
value of isort's `skip_gitignore` option with `False`. This can cause
flake8-isort to run significantly faster at the cost of making flake8-isort's
behavior differ slightly from the behavior of `isort --check`. [gschaffner]
* Fix broken `add_options` method [casperdcl]
* Improve the config option is added and read back. [gforcada]
* Bump plugin version. [gforcada]
* Update dependencies. [gforcada]
* Revamp GitHub actions. [gforcada]
* Drop python 3.6, and add python 3.10. [gforcada]
* Use linters and formatters to keep code sane and beautiful. [gforcada]
-------------------------------------------------------------------
Wed Oct 12 03:22:12 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>