File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ 0.19.0 2025-06-12
2+ -----------------
3+
4+ * Drop deprecated Python versions 3.7 and 3.8
5+
6+ * Drop unsupported pypy3.9
7+
8+ * Use ``sys.stdlib_module_names `` where available to determine whether a
9+ module is in the standard library or not.
10+
11+ * Replace usage of ``pkg_resources `` from setuptools with
12+ ``importlib.metadata ``.
13+
14+ * Move package to PyCQA PyPI organization
15+
16+ * Add support for checking ordering in a ``TYPE_CHECKING `` block. This
17+ will support the following variants:
18+
19+ * ``if TYPE_CHECKING: `` (where there was a prior ``from typing import
20+ TYPE_CHECKING ``.
21+
22+ * ``if t.TYPE_CHECKING: `` (where there was a prior ``import typing as
23+ t ``.
24+
25+ * ``if typing.TYPE_CHECKING: ``
26+
1270.18.2 2022-11-26
228-----------------
329
Original file line number Diff line number Diff line change 1717)
1818__uri__ = "https://github.com/PyCQA/flake8-import-order"
1919
20- __version__ = "0.18.2 "
20+ __version__ = "0.19.0 "
2121
2222__author__ = "Alex Stapleton"
2323
You can’t perform that action at this time.
0 commit comments