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
templates: login: Use /login/ as endpoint
Needed because otherwise the POST-ed data will be sent to a
redirect from /login to /login/, triggering an unnecessary
browser warning.
setup.py: Pin werkzeug<2.1
`utils/hash.py` uses `pbkdf2_bin` from werkzeug, which will
be removed in 2.1.
Pin the version until a fix is made.
See error:
```
isso/utils/hash.py:71: DeprecationWarning: 'pbkdf2_bin' is deprecated and will be removed in Werkzeug 2.1. Use 'hashlib.pbkdf2_hmac()' instead.
return pbkdf2(val, self.salt, self.iterations, self.dklen, self.func)
```