From 8f8ed8f7b603792b48401a64b51e900e86b88a82 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Tue, 7 Feb 2023 11:15:48 +0100 Subject: Multiple changes (#31) * Add support for Python 3.11. * Lint the code. * Improve error handling in test. * Bumped version for breaking release. * Drop support for Python 2.7, 3.5, 3.6. Co-authored-by: Gil Forcada Codinachs --- setup.cfg | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 8b04203..544de16 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ # Generated from: # https://github.com/zopefoundation/meta/tree/master/config/pure-python [bdist_wheel] -universal = 1 +universal = 0 [flake8] doctests = 1 @@ -12,3 +12,14 @@ ignore = .meta.toml docs/_build/html/_sources/* docs/_build/doctest/* + +[isort] +force_single_line = True +combine_as_imports = True +sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER +known_third_party = six, docutils, pkg_resources, pytz +known_zope = +known_first_party = +default_section = ZOPE +line_length = 79 +lines_after_imports = 2 -- cgit v1.2.1