-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Django4.0 #22
Comments
This is now fixed, thank you. Can you please update the version on PyPI too? |
+1 please! |
Hi, @kbytesys ! |
Can we get this fixed? |
Any chance of releasing this latest version to PyPi? |
Just for your information, even if the package were pushed to Pypi, if I am not wrong the change won't work. At least for Django 4.2.28. I needed to implement the following small fix (added lines are coming from previous state in this same repo) to make it work: bartsanchez@313509e |
ugettext_lazy
(used on line 7 of recaptcha3/fields.py) is deprecated since Django3.0 and removed in Django4.0. So django-recaptcha3 is unusable after upgrading to Django4.0The only change required to fix this is replacing
ugettext_lazy
withgettext_lazy
in that one place.The text was updated successfully, but these errors were encountered: