Commit 6702107
committed
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)
```1 parent 735860b commit 6702107
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
0 commit comments