Re: Migrations circular dependency on upgrade to Django 1.11

2017-12-15 Thread 'Tom Evans' via Django users
After more investigating, it seems that the problem was due to the squashed migrations and the migrations they replaced both being present. After removing all migrations (from our apps) listed in "replaces" and fixing up the dependencies to not point at the old squashed migration (which I guess was

Migrations circular dependency on upgrade to Django 1.11

2017-12-15 Thread 'Tom Evans' via Django users
Hi all I'm updating a project from Django 1.8 to 1.11, however the migrations which ran correctly under 1.8 now raise a CircularDependencyError for (effortless_auth.0001_initial, app.0028_create_south_korea_data_set, effortless_auth.0003_add_dev_group, app.0027_create_effortless_verticals), which