SyntaxError: Generator expression must be parenthezised / python manage.py migrate SyntaxError: Generator expression must be parenthezised / python manage.py migrate python python

SyntaxError: Generator expression must be parenthezised / python manage.py migrate


You’re not doing anything wrong; this is a problem between Django and Python 3.7. Django has a fix, but that fix hasn’t made it into a new version yet.

You can install the stable version of Python, Python 3.6, in the meantime.


This is a known incompatibility between Django and Python 3.7. A fix has already been merged into Django 2.x branches and backported into 1.11 branch.

To solve this issue, simply update Django to at least version 1.11.17 (or 2.x) or you can downgrade Python to version 3.6.


Also, upgrading Django solved my problem

On your terminal,

$ pip install -U Django

or see here