JanuaryDesk commited on
Commit
a15cf40
1 Parent(s): e4a7dfe

fix sqlalchemy version

Browse files
Files changed (2) hide show
  1. app.py +2 -1
  2. requirements.txt +1 -1
app.py CHANGED
@@ -38,8 +38,9 @@ os.chdir("..")
38
  import gradio as gr
39
  import pandas as pd
40
  import plotly
 
41
 
42
- print(f"gr.__version__={gr.__version__}, pd.__version__={pd.__version__}, ployly.__version__={plotly.__version__}")
43
  print(dir(gr))
44
 
45
  from cmo_db_inspector import App
 
38
  import gradio as gr
39
  import pandas as pd
40
  import plotly
41
+ import sqlalchemy
42
 
43
+ print(f"gr.__version__={gr.__version__}, pd.__version__={pd.__version__}, ployly.__version__={plotly.__version__}, sqlalchemy.__version__={sqlalchemy.__version__}")
44
  print(dir(gr))
45
 
46
  from cmo_db_inspector import App
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
  # gradio @ git+https://github.com/yiyuezhuo/gradio@cmo_pinned
2
  plotly
3
- sqlalchemy
4
  cmo_db_inspector @ git+https://github.com/yiyuezhuo/cmo_db_inspector.git
5
  pandas == 1.5.3
 
1
  # gradio @ git+https://github.com/yiyuezhuo/gradio@cmo_pinned
2
  plotly
3
+ sqlalchemy == 1.4.47
4
  cmo_db_inspector @ git+https://github.com/yiyuezhuo/cmo_db_inspector.git
5
  pandas == 1.5.3