diff --git a/gradio.egg-info/PKG-INFO b/gradio.egg-info/PKG-INFO index fad0b13e2f..1cee009b41 100644 --- a/gradio.egg-info/PKG-INFO +++ b/gradio.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: gradio -Version: 2.9b21 +Version: 2.9b23 Summary: Python library for easily interacting with trained machine learning models Home-page: https://github.com/gradio-app/gradio-UI Author: Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq, Pete Allen, Ömer Faruk Özdemir diff --git a/gradio/blocks.py b/gradio/blocks.py index 55f7108d67..2437d031f3 100644 --- a/gradio/blocks.py +++ b/gradio/blocks.py @@ -274,7 +274,6 @@ class Blocks(BlockContext): self.enable_queue = True else: self.enable_queue = enable_queue or False - self.config = self.get_config_file() def render(self): if Context.root_block is not None: @@ -387,6 +386,7 @@ class Blocks(BlockContext): Context.root_block = None else: self.parent.children.extend(self.children) + self.config = self.get_config_file() def load( self, fn: Callable, inputs: List[Component], outputs: List[Component] @@ -461,6 +461,7 @@ class Blocks(BlockContext): local_url (str): Locally accessible link to the demo share_url (str): Publicly accessible link to the demo (if share=True, otherwise None) """ + self.config = self.get_config_file() if ( auth and not callable(auth) diff --git a/gradio/version.txt b/gradio/version.txt index aa34028151..c9c02e33da 100644 --- a/gradio/version.txt +++ b/gradio/version.txt @@ -1 +1 @@ -2.9b21 \ No newline at end of file +2.9b23 \ No newline at end of file diff --git a/setup.py b/setup.py index f9a06dd2cb..46c3b588e9 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ long_description = (this_directory / "README.md").read_text() setup( name="gradio", - version="2.9b21", + version="2.9b23", include_package_data=True, description="Python library for easily interacting with trained machine learning models", long_description=long_description,