Make some dependency changes, support Python 3.10 and 3.11 (#5611)

Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
This commit is contained in:
Jakub Kuczys
2022-12-30 03:21:57 +01:00
committed by GitHub
parent d3308af0e2
commit 519acedf46
59 changed files with 324 additions and 373 deletions

View File

@@ -20,6 +20,8 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat",
]
dynamic = ["version", "requires-python", "dependencies", "optional-dependencies"]
@@ -42,7 +44,7 @@ red-discordbot = "redbot.pytest"
[tool.black]
line-length = 99
required-version = '22.1.0'
required-version = '22'
target-version = ['py38']
include = '\.py$'
force-exclude = '''
@@ -50,3 +52,6 @@ force-exclude = '''
redbot\/vendored
)/
'''
[tool.pytest.ini_options]
asyncio_mode = 'auto'