We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53926c7 commit 4147a5fCopy full SHA for 4147a5f
CHANGELOG.rst
@@ -1,3 +1,9 @@
1
+0.18.2 2022-11-26
2
+-----------------
3
+
4
+* Add ``zoneinfo`` to list of standard library modules
5
+* Fix registering of options with Flake8 >= 6.0
6
7
0.18.1 2019-03-04
8
-----------------
9
flake8_import_order/__about__.py
@@ -12,7 +12,7 @@
12
)
13
__uri__ = "https://github.com/PyCQA/flake8-import-order"
14
15
-__version__ = "0.18.1"
+__version__ = "0.18.2"
16
17
__author__ = "Alex Stapleton"
18
__email__ = "[email protected]"
tox.ini
@@ -42,3 +42,12 @@ commands =
42
[testenv:manifest]
43
deps = check-manifest
44
commands = check-manifest
45
46
+[testenv:release]
47
+deps =
48
+ build
49
+ twine
50
+commands =
51
+ python -m build
52
+ twine check dist/*
53
+ twine upload {posargs:--skip-existing} dist/*
0 commit comments