Error importing mnemosyne cards to anki

The issue is caused by dates > 2038 in your Mnemosyne file. If you’re ok with bringing them forward, you can work around the problem by now. Using a program like sqlitebrowser on your .db file, you can run the following query:

update cards set next_rep = 2100000000 where next_rep > 2100000000;