Update dependency flake8-import-order to v0.19.2 #167
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.18.2
->==0.19.2
Release Notes
PyCQA/flake8-import-order (flake8-import-order)
v0.19.2
Compare Source
Fix
AttributeError
in code for checking the order of imports in aTYPE_CHECKING
block.Yank 0.19.0 from PyPI to avoid aforementioned users on older versions
of Python accidentally receiving 0.19.0
v0.19.1
Compare Source
Fix bug in code for checking the order of imports in a
TYPE_CHECKING
block.Fix
python_requires
missing from 0.19.0 to allow folks usingvulnerable and unmaintained versions of Python to continue running
0.18.x with pip selecting the correct version for them.
v0.19.0
Compare Source
Drop deprecated Python versions 3.7 and 3.8
Drop unsupported pypy3.9
Use
sys.stdlib_module_names
where available to determine whether amodule is in the standard library or not.
Replace usage of
pkg_resources
from setuptools withimportlib.metadata
.Move package to PyCQA PyPI organization
Add support for checking ordering in a
TYPE_CHECKING
block. Thiswill support the following variants:
if TYPE_CHECKING:
(where there was a priorfrom typing import TYPE_CHECKING
).if t.TYPE_CHECKING:
(where there was a priorimport typing as t
).if typing.TYPE_CHECKING:
Configuration
📅 Schedule: Branch creation - "after 9am on friday,before 12am on friday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.