mgbam commited on
Commit
7d3f80a
·
verified ·
1 Parent(s): 5fcb473

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -1
requirements.txt CHANGED
@@ -17,4 +17,10 @@ requests # For API tools
17
  # Example:
18
  # streamlit==1.30.0
19
  # langchain==0.1.5
20
- passlib[bcrypt]>=1.7.4
 
 
 
 
 
 
 
17
  # Example:
18
  # streamlit==1.30.0
19
  # langchain==0.1.5
20
+ # requirements.txt
21
+ passlib>=1.7.4
22
+ bcrypt==3.2.0
23
+ # or try a more recent bcrypt if 3.2.0 also has issues, e.g., bcrypt==4.0.1
24
+ # but ensure it's compatible with your passlib version.
25
+ # passlib often bundles bcrypt via `passlib[bcrypt]`, try that too:
26
+ # passlib[bcrypt]>=1.7.4