Am also only see the error below when running python -m pip install -U Django then python manage.py makemigrations
files = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\stuar\simplefileupload\.venv\Lib\site-packages\django\forms\widgets.py", line 427, in __init__
raise ValueError(
ValueError: ClearableFileInput doesn't support uploading multiple files.
If I use the command pip install Django==4.2, I am getting no warning about the 'multiple': True setting.
Is this a security concern or just my misunderstanding?