Remove py-bcrypt as dependency for 'auth' feature

need to add bcrypt instead, but must wait to avoid breaking things
This commit is contained in:
Lance Edgar 2018-02-12 19:33:21 -06:00
parent a70552534a
commit 45746ff5e0

View file

@ -139,6 +139,7 @@ extras = {
}
# TODO: pretty sure some/all of this should be merged with above
if sys.platform == 'win32':
extras['auth'] = [
#
@ -152,7 +153,6 @@ else:
# package # low high
'passlib', # 1.7.1
'py-bcrypt', # 0.2
]