Open quorth0n opened 2 years ago
@garyburgmann thank you for your work on this. Any chance we can get this moving forward and a release cut? It is blocking our Django 4.0 upgrade.
Hi Adam,
I do certainly need to put some time into this. I will look to pencil in some time Mon 21st and Tue 22nd to do this. Pull requests welcome.
Cheers, Gary
On 8 Mar 2022, at 1:43 am, Adam Duren @.***> wrote:
@garyburgmann https://github.com/garyburgmann thank you for your work on this. Any chance we can get this moving forward and a release cut? It is blocking our Django 4.0 upgrade.
— Reply to this email directly, view it on GitHub https://github.com/garyburgmann/drf-firebase-auth/issues/40#issuecomment-1060826591, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGIRYIS3EFCC7KVWUHS7D6TU6YPY3ANCNFSM5OPR5EKA. You are receiving this because you were mentioned.
I believe @quorth0n has addressed the compatibility issue in PR #41
@garyburgmann check my PR on this issue, should be good to merge
@adamduren you can set your requirements.txt to install from my fork while we wait for a merge, pip install git+https://github.com/quorth0n/drf-firebase-auth@issue-40
It's a shame this hasn't yet made it into a release. Pretty vital update to keep the library current.
@garyburgmann are you still working on this project?
smart_text
is deleted but they introduced something new called smart_str
, you can map smart_text
to smart_str
to make old libraries work for the time being.
you can do the following in your settings file:
import django
from django.utils.encoding import smart_str
django.utils.encoding.smart_text = smart_str
It's a shame this hasn't yet made it into a release. Pretty vital update to keep the library current.
@garyburgmann are you still working on this project?
Apologies all, I have been out of the Django game for a little while and been slack at maintaining this.
If anyone is interested in being a maintainer here, please ping me.
Will try to review PRs this weekend.
@garyburgmann happy to assist where I can with maintaining.
Using this package with django 4.x gives the following error:
Smart text has been deprecated since django 3.0 and removed in 4.0. I'm willing to submit a PR that fixes this