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
LTS support is ending for Django 3.2 in about 2 months. 4.2 is the next version that still has LTS. Ideally, the package should be upgraded to support 4.2 and 5.0.
The only error I'm seeing currently is this import error: cannot import name 'smart_text' from 'django.utils.encoding' (/opt/pyre/lib/python3.8/site-packages/django/utils/encoding.py)
A suggested workaround is to do:
import django
from django.utils.encoding import smart_str
django.utils.encoding.smart_text = smart_str
Upgrading the package would be a more elegant solution than the above.
The text was updated successfully, but these errors were encountered:
It actually looks like @heavenshell fixed it in 2a1e432 but no new releases have been out since then. Is it possible to release a new version with latest changes on master?
@heavenshell thanks for the reply! No changes are need actually as you have fixed it already as I've noted in the second comment. The package only needs a release with the latest master.
LTS support is ending for Django 3.2 in about 2 months. 4.2 is the next version that still has LTS. Ideally, the package should be upgraded to support 4.2 and 5.0.
The only error I'm seeing currently is this import error:
cannot import name 'smart_text' from 'django.utils.encoding' (/opt/pyre/lib/python3.8/site-packages/django/utils/encoding.py)
A suggested workaround is to do:
Upgrading the package would be a more elegant solution than the above.
The text was updated successfully, but these errors were encountered: