edyoshikun commited on
Commit
c6e4ba9
·
1 Parent(s): e805cf3

pinning gradio to 5.27.1

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +3 -2
app.py CHANGED
@@ -437,6 +437,6 @@ if __name__ == "__main__":
437
  )
438
 
439
  # Launch the Gradio app
440
- demo.launch()
441
  except Exception as e:
442
  print(f"Error initializing VSGradio: {e}")
 
437
  )
438
 
439
  # Launch the Gradio app
440
+ demo.launch(server_name="0.0.0.0", share=False)
441
  except Exception as e:
442
  print(f"Error initializing VSGradio: {e}")
requirements.txt CHANGED
@@ -1,5 +1,6 @@
 
1
  git+https://github.com/mehta-lab/VisCy.git@v0.3.0
2
- gradio
3
  scikit-image
4
  cmap
5
- pydantic
 
1
+ # Requires Python 3.11 or higher
2
  git+https://github.com/mehta-lab/VisCy.git@v0.3.0
3
+ gradio==5.27.1
4
  scikit-image
5
  cmap
6
+ pydantic==2.11.3