Forums

PA used wrong version of Django?

I started a new project today. In the Python Anywhere UI, I selected the option for django 1.9.3 using Python 3.5

However, when I started working on my project I noticed I couldn't use makemigrations. Being suspicious, I checked the version:

$ 03:29 ~/auditTracker$ python -c "import django; print(django.get_version())"

1.3.7

Did I miss something? Why is my django 1.9.3 project using an older version?

use python3.5 instead of python (which defaults to python2.7)