Version hotfix (#1704)

* hotfix

* fix
This commit is contained in:
Abubakar Abid 2022-07-04 13:06:24 -07:00 committed by GitHub
parent c710becf60
commit 8c9419fce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
from importlib.metadata import version
import pkgutil
import gradio.components as components
import gradio.inputs as inputs
@ -67,5 +67,5 @@ from gradio.templates import (
Webcam,
)
current_pkg_version = version("gradio")
current_pkg_version = pkgutil.get_data(__name__, "version.txt").decode('ascii').strip()
__version__ = current_pkg_version

View File

@ -1 +1 @@
3.0.23
3.0.24