Unable to install with Django >4.0
ablackshear opened this issue · 2 comments
I am trying to install mssql-django 1.3 alongside Django 4.2, but conda wants to force a downgrade to Django. Starting with a new environment, solving the environment fails with this message
Could not solve for environment specs
The following packages are incompatible
├─ django 4.2.7** is requested and can be installed;
└─ mssql-django 1.3** is uninstallable because it requires
└─ django >=2.2,<4.1 , which conflicts with any installable versions previously reported.
Oh I see, I didn't realize it was conda and not mssql-django adding that dependency requirement. Our environment already has a few things that need to be pip-installed rather than from conda, I just added mssql-django to that list and it installed successfully alongside Django 4.2.7. Thanks!