freemt commited on
Commit
b898a5d
β€’
1 Parent(s): 8a677e1

Bump to 0.1.1a0

Browse files
Files changed (3) hide show
  1. pyproject.toml +2 -2
  2. radiobee/__init__.py +1 -0
  3. radiobee/__main__.py +2 -2
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [tool.poetry]
2
- name = "radiobee-aligner"
3
- version = "0.1.0"
4
  description = ""
5
  authors = ["ffreemt"]
6
 
 
1
  [tool.poetry]
2
+ name = "radiobee"
3
+ version = "0.1.1-alpha.0"
4
  description = ""
5
  authors = ["ffreemt"]
6
 
radiobee/__init__.py CHANGED
@@ -1 +1,2 @@
1
  """Init."""
 
 
1
  """Init."""
2
+ __version__ = "0.1.1a0"
radiobee/__main__.py CHANGED
@@ -43,7 +43,7 @@ import gradio as gr
43
 
44
  # from radiobee.error_msg import error_msg
45
  from radiobee.process_upload import process_upload
46
- from radiobee.gradiobee import gradiobee
47
 
48
  # pd.set_option('display.max_colwidth', 100)
49
 
@@ -481,7 +481,7 @@ if __name__ == "__main__":
481
  fn=gradiobee,
482
  inputs=inputs,
483
  outputs=outputs,
484
- title="radiobee-alignerπŸ” ",
485
  description=description,
486
  article=article,
487
  examples=examples,
 
43
 
44
  # from radiobee.error_msg import error_msg
45
  from radiobee.process_upload import process_upload
46
+ from radiobee.gradiobee import gradiobee, __version__
47
 
48
  # pd.set_option('display.max_colwidth', 100)
49
 
 
481
  fn=gradiobee,
482
  inputs=inputs,
483
  outputs=outputs,
484
+ title=f"radiobee-devπŸ”  {__version__}",
485
  description=description,
486
  article=article,
487
  examples=examples,