Skip to content

Commit

Permalink
Merge pull request #24 from TEAMuP-dev/cb/gradio-update
Browse files Browse the repository at this point in the history
update gradio to 4.37.2
  • Loading branch information
xribene authored Aug 9, 2024
2 parents b7e8d0a + 499f749 commit 9b62080
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/harmonic_percussive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ emoji: 📚
colorFrom: pink
colorTo: green
sdk: gradio
sdk_version: 4.7.1
sdk_version: 4.37.2
app_file: app.py
pinned: false
license: mit
Expand Down
2 changes: 1 addition & 1 deletion examples/harmonic_percussive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ def clip(db):
process_fn=process_fn)

demo.queue()
demo.launch(share=True)
demo.launch(share=True, show_error=True)
2 changes: 1 addition & 1 deletion examples/pitch_shifter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ emoji: 🏆
colorFrom: indigo
colorTo: gray
sdk: gradio
sdk_version: 4.7.1
sdk_version: 4.37.2
app_file: app.py
pinned: false
license: mit
Expand Down
2 changes: 1 addition & 1 deletion examples/pitch_shifter/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ def process_fn(input_audio_path, pitch_shift_amount):
process_fn=process_fn)

demo.queue()
demo.launch(share=True)
demo.launch(share=True, show_error=True)
2 changes: 1 addition & 1 deletion examples/templates/midi2midi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ emoji: 🏆
colorFrom: indigo
colorTo: gray
sdk: gradio
sdk_version: 4.7.1
sdk_version: 4.37.2
app_file: app.py
pinned: false
license: mit
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/midi2midi/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ def process_fn(input_midi_path):
process_fn=process_fn)

demo.queue()
demo.launch(share=True)
demo.launch(share=True, show_error=True)
2 changes: 1 addition & 1 deletion examples/templates/wav2wav/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ def process_fn(input_audio_path):
process_fn=process_fn)

demo.queue()
demo.launch(share=True)
demo.launch(share=True, show_error=True)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
description='',
packages=find_packages(),
install_requires=[
'gradio==4.7.1',
'gradio==4.37.2',
'descript-audiotools',
'symusic'
]
Expand Down

0 comments on commit 9b62080

Please sign in to comment.