remove pydantic and Jinja2 from dependencies, update lunr and parameterized

This commit is contained in:
0xDEADFED5 2024-08-15 21:51:49 -07:00
parent 404e8e7b79
commit 347ec97035

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "evennia" name = "evennia"
version = "4.2.0" version = "4.3.0"
maintainers = [{ name = "Griatch", email = "griatch@gmail.com" }] maintainers = [{ name = "Griatch", email = "griatch@gmail.com" }]
description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc)." description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc)."
requires-python = ">=3.10" requires-python = ">=3.10"
@ -72,19 +72,17 @@ dependencies = [
"django-sekizai == 2.0.0", "django-sekizai == 2.0.0",
"inflect >= 5.2.0", "inflect >= 5.2.0",
"autobahn >= 20.7.1, < 21.0.0", "autobahn >= 20.7.1, < 21.0.0",
"lunr == 0.6.0", "lunr == 0.7.0.post1",
"simpleeval <= 1.0", "simpleeval <= 1.0",
"uritemplate == 4.1.1", "uritemplate == 4.1.1",
"Jinja2 < 3.1",
"tzdata >= 2022.6", "tzdata >= 2022.6",
"pydantic < 2.0",
# for unit tests and code formatting # for unit tests and code formatting
"mock >= 4.0.3", "mock >= 4.0.3",
"model_mommy >= 2.0", "model_mommy >= 2.0",
"anything ==0.2.1", "anything ==0.2.1",
"black >= 22.6", "black >= 22.6",
"isort >= 5.10", "isort >= 5.10",
"parameterized ==0.8.1" "parameterized == 0.9.0"
] ]
[project.optional-dependencies] [project.optional-dependencies]