You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With python 2.7, when installing django-simple-captcha with pip 9.0, pip downloads django 2.0 (released 2017/12/02), and executes the command python setup.py egg_info, which results in an error: AttributeError: 'module' object has no attribute 'lru_cache'. Before django 2.0 was released, it installed django 1.11, and there was no problem. django <2.0 did support python 2.7, but django >=2.0 does not, which is I think the cause of the bug.
To sum up, "pip install django-simple-captcha" downloads django 2.0 which is not compatible with python 2.7.
The text was updated successfully, but these errors were encountered:
Well... since python2 and Django 1.11 are both EOL by now, would it make sense to drop support for python2 and require Django 2.2+ (which is the oldest version of Django currently supported)?
With python 2.7, when installing django-simple-captcha with pip 9.0, pip downloads django 2.0 (released 2017/12/02), and executes the command python setup.py egg_info, which results in an error: AttributeError: 'module' object has no attribute 'lru_cache'. Before django 2.0 was released, it installed django 1.11, and there was no problem. django <2.0 did support python 2.7, but django >=2.0 does not, which is I think the cause of the bug.
To sum up, "pip install django-simple-captcha" downloads django 2.0 which is not compatible with python 2.7.
The text was updated successfully, but these errors were encountered: