We haven't really deployed yet, so generally to make migrations we're deleting existing migration files and re-running makemigrations.
We have two apps, and one of them depends on the other as well as django.contrib.auth. In that app's migrations the dependencies often swap order seemingly indeterminately.

The resulting migration includes either:
class Migration(migrations.Migration):
('auth', '0009_alter_user_last_name_max_length'),
('app2', '0001_initial'),
...
or:
class Migration(migrations.Migration):
('app2', '0001_initial'),
('auth', '0009_alter_user_last_name_max_length'),
and it seems to switch back and forth with nearly every run.
Does anybody know why, or how to nail down the order? It doesn't seem to make a technical difference, but I'd like to avoid the churn/noise in our repo.