anonim-legivon / picoboard

Imageboard engine powered by Django & Django Rest Framework
MIT License
18 stars 0 forks source link

Bump isort from 4.3.4 to 4.3.12 #36

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps isort from 4.3.4 to 4.3.12.

Release notes *Sourced from [isort's releases](https://github.com/timothycrosley/isort/releases).* > ### 4.3.12 - March 6, 2019 - hot fix release > - Fix error caused when a virtual environment not detected > > ### 4.3.11 - March 6, 2019 - hot fix release > - Fixed issue [#876](https://github-redirect.dependabot.com/timothycrosley/isort/issues/876): confused by symlinks pointing to virtualenv gives FIRSTPARTY not THIRDPARTY > - Fixed issue [#873](https://github-redirect.dependabot.com/timothycrosley/isort/issues/873): current version skips every file on travis > - Additional caching to reduce performance regression introduced in 4.3.5 > - Improved handling of pex files and other binary Python files > > ### 4.3.10 - March 2, 2019 - hot fix release > - Fixed Windows incompatibilities (Issue [#835](https://github-redirect.dependabot.com/timothycrosley/isort/issues/835)) > - Fixed relative import sorting bug (Issue [#417](https://github-redirect.dependabot.com/timothycrosley/isort/issues/417)) > - Fixed "no_lines_before" to also be respected from previous empty sections. > - Fixed slow-down introduced by finders mechanism by adding a LRU cache (issue [#848](https://github-redirect.dependabot.com/timothycrosley/isort/issues/848)) > - Fixed issue [#842](https://github-redirect.dependabot.com/timothycrosley/isort/issues/842) default encoding not-set in Python2 > - Restored Windows automated testing > - Added Mac automated testing > > ### 4.3.9 - Feburary 25, 2019 - hot fix release > - Fixed a bug that led to an incompatibility with black: [#831](https://github-redirect.dependabot.com/timothycrosley/isort/issues/831) > > ### 4.3.8 - February 25, 2019 - hot fix release > - Fixed a bug that led to the recursive option not always been available from the command line. > > ### 4.3.7 - February 25, 2019 - hot fix release > - Expands the finder failsafe to occur on the creation of the finder objects. > > ### 4.3.6 - February 24, 2019 - hot fix release > - Fixes a fatal error that occurs if a single finder throws an exception. Important as we add more finders that utilize third-party libraries. > > ## 4.3.5 - NOTE: Last Python2 Release > This is the final Python 2.x release of isort, and includes the following major changes: > > Potentially Interface Breaking: > - The `-r` option for removing imports has been renamed `-rm` to avoid accidental deletions and confusion with the `-rc` recursive option. > - `__init__.py` has been removed from the default ignore list. The default ignore list is now empty - with all items needing to be explicitly ignored. > - Isort will now by default ignore .tox / venv folders in an effort to be "safe". You can disable this behaviour by setting the "--unsafe" flag, this is separate from any skip or not skip rules you may have in place. > - Isort now allows for files missing closing newlines in whitespace check > - `distutils` support has been removed to simplify setup.py > > New: > - Official Python 3.7 Compatibility. > - Support for using requirements files to auto determine third-paty section if pipreqs & requirementslib are installed. > - Added support for using pyproject.toml if toml is installed. > - Added support for XDG_HOME if appdirs is installed. > - An option has been added to enable ignoring trailing comments ('ignore_comments') defaulting to False. > - Added support to enable line length sorting for only specific sections > - Added a `correctly_sorted` property on the SortsImport to enable more intuitive programmatic checking. > > Fixes: > ... (truncated)
Changelog *Sourced from [isort's changelog](https://github.com/timothycrosley/isort/blob/develop/CHANGELOG.md).* > ### 4.3.12 - March 6, 2019 - hot fix release > - Fix error caused when virtual environment not detected > > ### 4.3.11 - March 6, 2019 - hot fix release > - Fixed issue [#876](https://github-redirect.dependabot.com/timothycrosley/isort/issues/876): confused by symlinks pointing to virtualenv gives FIRSTPARTY not THIRDPARTY > - Fixed issue [#873](https://github-redirect.dependabot.com/timothycrosley/isort/issues/873): current version skips every file on travis > - Additional caching to reduce performance regression introduced in 4.3.5 > > ### 4.3.10 - March 2, 2019 - hot fix release > - Fixed Windows incompatibilities (Issue [#835](https://github-redirect.dependabot.com/timothycrosley/isort/issues/835)) > - Fixed relative import sorting bug (Issue [#417](https://github-redirect.dependabot.com/timothycrosley/isort/issues/417)) > - Fixed "no_lines_before" to also be respected from previous empty sections. > - Fixed slow-down introduced by finders mechanism by adding a LRU cache (issue [#848](https://github-redirect.dependabot.com/timothycrosley/isort/issues/848)) > - Fixed issue [#842](https://github-redirect.dependabot.com/timothycrosley/isort/issues/842) default encoding not-set in Python2 > - Restored Windows automated testing > - Added Mac automated testing > > ### 4.3.9 - February 25, 2019 - hot fix release > - Fixed a bug that led to an incompatibility with black: [#831](https://github-redirect.dependabot.com/timothycrosley/isort/issues/831) > > ### 4.3.8 - February 25, 2019 - hot fix release > - Fixed a bug that led to the recursive option not always been available from the command line. > > ### 4.3.7 - February 25, 2019 - hot fix release > - Expands the finder failsafe to occur on the creation of the finder objects. > > ### 4.3.6 - February 24, 2019 - hot fix release > - Fixes a fatal error that occurs if a single finder throws an exception. Important as we add more finders that utilize third party libraries. > > ### 4.3.5 - February 24, 2019 - last Python 2.7 Maintenance Release > > This is the final Python 2.x release of isort, and includes the following major changes: > > Potentially Interface Breaking: > - The `-r` option for removing imports has been renamed `-rm` to avoid accidental deletions and confusion with the `-rc` recursive option. > - `__init__.py` has been removed from the default ignore list. The default ignore list is now empty - with all items needing to be explicitly ignored. > - Isort will now by default ignore .tox / venv folders in an effort to be "safe". You can disable this behaviour by setting the "--unsafe" flag, this is separate from any skip or not skip rules you may have in place. > - Isort now allows for files missing closing newlines in whitespace check > - `distutils` support has been removed to simplify setup.py > > New: > - Official Python 3.7 Compatibility. > - Support for using requirements files to auto determine third-paty section if pipreqs & requirementslib are installed. > - Added support for using pyproject.toml if toml is installed. > - Added support for XDG_HOME if appdirs is installed. > - An option has been added to enable ignoring trailing comments ('ignore_comments') defaulting to False. > - Added support to enable line length sorting for only specific sections > - Added a `correctly_sorted` property on the SortsImport to enable more intuitive programmatic checking. > > Fixes: > ... (truncated)
Commits - [`138a4a1`](https://github.com/timothycrosley/isort/commit/138a4a1fb16cdabee09450df5ffdb6096d9fb7e2) Prepare changelog for 4.3.12 release - [`6eb4725`](https://github.com/timothycrosley/isort/commit/6eb47254bf57f241b33122528e70e4ac80e12be2) Bump version - [`130bf3a`](https://github.com/timothycrosley/isort/commit/130bf3ad6a16ed069df6dca87054b61a97d199d6) Fix newline argument - [`83c3b63`](https://github.com/timothycrosley/isort/commit/83c3b63b15b478889a498c5d8fd19f22f8402f6e) Allow fallback to OS encoding - [`9f89ff8`](https://github.com/timothycrosley/isort/commit/9f89ff822f791a4df015da33036902ecd911be65) Update changelog - [`f0434ef`](https://github.com/timothycrosley/isort/commit/f0434ef620c1a5e2ede0fb5c99ff3fe372f51844) Merge branch 'master' of https://github.com/timothycrosley/isort - [`df6de29`](https://github.com/timothycrosley/isort/commit/df6de29b987d314f0d7c6e8d87434e0107af5677) Fix handling of binary and .pex python files - [`ccca48c`](https://github.com/timothycrosley/isort/commit/ccca48cbb57d8d591b68afe5435a17f213ba663b) Merge pull request [#878](https://github-redirect.dependabot.com/timothycrosley/isort/issues/878) from timothycrosley/feature/fix-issue-873 - [`61563f3`](https://github.com/timothycrosley/isort/commit/61563f3b7183d8e600a9f161e74af9252fb2fdbb) Add missing file - [`0ef06b1`](https://github.com/timothycrosley/isort/commit/0ef06b14f27fb67a7e39ad1ef6368d7592a05b99) Add test for pants - Additional commits viewable in [compare view](https://github.com/timothycrosley/isort/compare/4.3.4...4.3.12)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 5 years ago

Superseded by #37.