3
0
Fork 0

feat: use bcrypt directly instead of passlib

apparently passlib has not been updated in years, and the combo with
latest bcrypt v5 was causing errors

https://github.com/pyca/bcrypt/issues/1082
https://github.com/pyca/bcrypt/issues/1079
https://foss.heptapod.net/python-libs/passlib/-/issues/196
This commit is contained in:
Lance Edgar 2025-10-19 12:58:34 -05:00
parent 050a6002da
commit 101dbdc96b
3 changed files with 10 additions and 14 deletions

View file

@ -415,8 +415,8 @@ app_title = WuttaTest
self.assertEqual(ver, version("SQLAlchemy"))
# can also specify the dist
ver = self.app.get_version(dist="passlib")
self.assertEqual(ver, version("passlib"))
ver = self.app.get_version(dist="progress")
self.assertEqual(ver, version("progress"))
def test_make_title(self):
text = self.app.make_title("foo_bar")