Up minimum Python to 3.10
This commit is contained in:
parent
aadbef02c4
commit
a7bd428970
2 changed files with 5 additions and 4 deletions
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.9", "3.10", "3.11"]
|
python-version: ["3.10", "3.11"]
|
||||||
TESTING_DB: ["sqlite3", "postgresql", "mysql"]
|
TESTING_DB: ["sqlite3", "postgresql", "mysql"]
|
||||||
include:
|
include:
|
||||||
- python-version: "3.10"
|
- python-version: "3.10"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ maintainers = [
|
||||||
{ name="Griatch", email="griatch@gmail.com" },
|
{ name="Griatch", email="griatch@gmail.com" },
|
||||||
]
|
]
|
||||||
description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*)."
|
description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*)."
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.10"
|
||||||
readme = { file="README.md", content-type="text/markdown" }
|
readme = { file="README.md", content-type="text/markdown" }
|
||||||
license = { text="BSD" }
|
license = { text="BSD" }
|
||||||
keywords = [
|
keywords = [
|
||||||
|
|
@ -19,7 +19,8 @@ keywords = [
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: JavaScript",
|
"Programming Language :: JavaScript",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"License :: OSI Approved :: BSD License",
|
"License :: OSI Approved :: BSD License",
|
||||||
|
|
@ -111,7 +112,7 @@ extra = [
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
target-version = ['py39', 'py310', 'py311']
|
target-version = ['py310', 'py311']
|
||||||
exclude = '''
|
exclude = '''
|
||||||
|
|
||||||
(
|
(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue