Should it work with Django 3.x? Was hoping to add this to a project that hasn't completed the update to 4+ yet.
Migrations fail for me on Django<4:
ValueError: The field salesmanbasket.BasketItem.basket was declared with a lazy reference to 'shop.basket', but app 'shop' isn't installed.
The field salesmanorders.OrderItem.order was declared with a lazy reference to 'shop.order', but app 'shop' isn't installed.
The field salesmanorders.OrderNote.order was declared with a lazy reference to 'shop.order', but app 'shop' isn't installed.
The field salesmanorders.OrderPayment.order was declared with a lazy reference to 'shop.order', but app 'shop' isn't installed.
If I install Django 4+ then the migration is successful.
-- edit --
It does appear to work on 3.x once the migration is created on 4.x
Swappable models release indicates it should work for Django 3.1+.
Should it work with Django 3.x? Was hoping to add this to a project that hasn't completed the update to 4+ yet.
Migrations fail for me on Django<4:
If I install Django 4+ then the migration is successful.
-- edit --
It does appear to work on 3.x once the migration is created on 4.x