You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Model Context Protocol (MCP) server providing Django project exploration resources and optional stateful shell access for LLM assistants to interact with Django projects.
@@ -26,12 +29,17 @@ import cog
26
29
27
30
from noxfile import DJ_VERSIONS
28
31
from noxfile import PY_VERSIONS
32
+
from noxfile import display_version
33
+
34
+
django_versions = [
35
+
display_version(version) for version in DJ_VERSIONS if version != "main"
36
+
]
29
37
30
-
cog.outl(f"- Python {', '.join([version for version in PY_VERSIONS])}")
31
-
cog.outl(f"- Django {', '.join([version for version in DJ_VERSIONS if version != 'main'])}")
0 commit comments