Return the Django version, which should be correct for all built-in Django commands. User-supplied commands can override this method to return their own version.
(self)
| 294 | raise TypeError("requires_system_checks must be a list or tuple.") |
| 295 | |
| 296 | def get_version(self): |
| 297 | """ |
| 298 | Return the Django version, which should be correct for all built-in |
| 299 | Django commands. User-supplied commands can override this method to |
| 300 | return their own version. |
| 301 | """ |
| 302 | return django.get_version() |
| 303 | |
| 304 | def create_parser(self, prog_name, subcommand, **kwargs): |
| 305 | """ |
no outgoing calls