Měl jsem tento problém, protože jsem zadal vlastní import_id_fields
pole, ale nevyloučil id
pole.
Zadal jsem:
import_id_fields = ('code',)
skip_unchanged = True
report_skipped = True
Ale potřeboval jsem:
import_id_fields = ('code',)
skip_unchanged = True
report_skipped = True
exclude = ('id',)
Trochu chyba noob, ale někomu to může ušetřit google.
Ref:https://github.com/django-import -export/django-import-export/issues/273