Phyticist
Phyticist

Reputation: 595

Django 1.9 Upgrade "Not Supported" issue

I've been using Django 1.8.7 in my project, after the yesterday's release I have upgraded to 1.9 (I am using VS PVTS and have deleted Django 1.8.7 from my Virtual Environment and installed the packages from the requirements.txt again).

However, whenever I try to build & run my project it gives me an error in the manage.py in line:

execute_from_command_line(sys.argv)

saying:

Django 1.9.0 is not supported.

I am using Django, pyodbc, django-pyodbc-azure, requests modules.

What might be the problem?

Thank you.

Upvotes: 1

Views: 804

Answers (1)

Sayse
Sayse

Reputation: 43310

From the django-pyodbc-azure github page,

Dependencies

  • Django 1.8.7
  • pyodbc 3.0 or newer

Given that the pyodbc dependency states "or newer" it would appear you'll have to wait until this supports django 1.9 also


Update

pyodbc azure has now been updated to support django 1.9

Upvotes: 2

Related Questions