Closed shuttle1987 closed 3 years ago
Now I'm aware that my particular requirements.txt
file will fail to install since this package has an exact dependency on 'djangorestframework==3.11.0', but the issue with Django versions I think is independent of this.
Receiving similar error.
ERROR: django-rest-authemail 2.0.6 has requirement djangorestframework==3.11.0, but you'll have djangorestframework 3.12.4 which is incompatible.
Receiving similar error.
ERROR: Cannot install -r requirements.txt (line 16), django-rest-authemail==2.0.6 and djangorestframework==3.12.4 because these package versions have conflicting dependencies.
I fix it in pull request 42
This issue should be addressed by PR #42, which I just pulled
At the moment I'm attempting to install this package using the following
requirements.txt
file:This is failing with the following:
I notice that in the
setup.py
file for this project:https://github.com/celiao/django-rest-authemail/blob/5eb1a2199e6159a9f3c144162e876b1f9a636917/setup.py#L30-L34
The version requirement here is pinned against
Django<=3.1
. If Django 3.1 is supported, as I suspect is the case since #27 has been closed would this issue be fixed by changing this requirement in setup.py toDjango<3.2
?