From 9dd34446e87ad5bc30d6f151932d7f26899f0a31 Mon Sep 17 00:00:00 2001 From: Ewald de Wit Date: Fri, 30 Sep 2022 09:03:30 +0200 Subject: [PATCH] Add Python 3.11 support --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 298aa1d..0a05f11 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,9 +20,13 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Programming Language :: Python :: 3 :: Only Framework :: AsyncIO [options] py_modules = nest_asyncio python_requires = >=3.5 + +[flake8] +ignore = D205,D400,W503