django-passwords
django-passwords copied to clipboard
Can we get a new release? The last release is going on 4 years old.
is this package compatible with django 3? Also in the future how can I know this without having to ask? thank you!
for anyone looking for a version of this that runs on Django 4.0+ I have a fork over at https://github.com/brhelwig/django-strong-passwords which is published on pypi as well.
[](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....
This reverts commit fe8505091fc24fa7b8d4a22b36bf9b8f0a931430, reversing changes made to bdb0e991ca0cf0996e8b681ff7745cf729900f48. --- Reverting this primarily because it does not appear to work - if I install the `master` branch of this library...
This PR improves and fixes the testing/build setup, and updates the supported Python/Django versions to those that are currently maintained. I made these changes as part of investigating the issue...
My first time using the dictionary feature of this library was to use the /usr/share/dict/words dictionary as outlined in the documentation. On my system, this file contains just shy of...
It looks like two strings are being used interchangably, but with different meaning and format specification: https://github.com/dstufft/django-passwords/blob/master/passwords/locale/es/LC_MESSAGES/django.po#L65-L67 ``` #: validators.py:106 #, fuzzy, python-format #| msgid "Must contain %(WORDS)s or more...
I recently found a bit of code which had been copied with only slight modifications to use `ComplexityValidator` in `AUTH_PASSWORD_VALIDATORS`. Would it be worth tossing together a pull request which...
I've been able to successfully subclass Django's `UserCreationForm` and `PasswordChangeForm` to use `PasswordField` instead of the regular `PasswordInput` widget, but I'm having issues with [`AdminPasswordChangeForm`](https://github.com/django/django/blob/1.8.5/django/contrib/auth/forms.py#L324) and I'm not sure why....