I am trying to setup an established Django project I developed in Windows 11. When trying the makemigrations, I get an error that says import error: win32 only. It appears this error is generated from an import statement in my views.py that looks like: from .modelRoutines.fitparse import KCBFitParse I opened a python console and tried that statement, it appears the fitparse.py file is the offender. I got this from https://github.com/dtcooper/python-fitparse What makes it win32 only? If I change the text encoding of the .py files will it work?