mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 11:26:10 +00:00
Increase Django version to 5.2 to address security reports in older Django
This commit is contained in:
parent
da8df981cb
commit
1e99ba4222
@ -2,7 +2,7 @@
|
||||
|
||||
## Main branch
|
||||
|
||||
Updated dependencies: Django >5.1 (<5,2), Twisted >24 (<25).
|
||||
Updated dependencies: Django >5.2 (<5.3), Twisted >24 (<25).
|
||||
Python versions: 3.11, 3.12, 3.13.
|
||||
|
||||
This upgrade requires running `evennia migrate` on your existing database
|
||||
|
||||
@ -7,4 +7,4 @@ PYTHON_MIN = 3.11
|
||||
PYTHON_MAX_TESTED = 3.13.100
|
||||
TWISTED_MIN = 24.11
|
||||
DJANGO_MIN = 4.0.2
|
||||
DJANGO_MAX_TESTED = 5.1.100
|
||||
DJANGO_MAX_TESTED = 5.2.100
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
"""
|
||||
r"""
|
||||
Basic Map - helpme 2022
|
||||
|
||||
This adds an ascii `map` to a given room which can be viewed with the `map` command.
|
||||
@ -60,7 +60,6 @@ arguments passed into the Map command.
|
||||
import time
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
from evennia import CmdSet
|
||||
from evennia.commands.default.muxcommand import MuxCommand
|
||||
|
||||
|
||||
@ -65,7 +65,7 @@ classifiers = [
|
||||
dependencies = [
|
||||
# core dependencies
|
||||
"legacy-cgi;python_version >= '3.13'",
|
||||
"django >= 5.1, < 5.2",
|
||||
"django >= 5.2, < 5.3",
|
||||
"twisted >= 24.11.0, < 25",
|
||||
"pytz >= 2022.6",
|
||||
"djangorestframework >= 3.14, < 3.15",
|
||||
@ -186,4 +186,4 @@ exclude = [
|
||||
"migrations",
|
||||
"docs",
|
||||
]
|
||||
line-length = 100
|
||||
line-length = 100
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user