Update supported versions script slightly.

This commit is contained in:
Emil Stenström 2023-12-09 12:06:33 +01:00
parent 5ca0c43071
commit f4899795e8

View file

@ -137,11 +137,9 @@ def build_pypi_classifiers(python_to_django):
f'"Programming Language :: Django :: {env_format(django_version, divider=".")}",'
)
return (
" " * 4
+ "classifiers=[\n"
+ textwrap.indent("\n".join(classifiers), prefix=" " * 8)
)
return textwrap.indent(
"classifiers=[\n", prefix=" " * 4
) + textwrap.indent("\n".join(classifiers), prefix=" " * 8)
def build_readme(python_to_django):