latest pypi version

This commit is contained in:
Abubakar Abid 2019-04-20 00:20:50 -07:00
parent d39e50c6be
commit e6915a6ee5
5 changed files with 14 additions and 14 deletions

View File

@ -249,12 +249,12 @@ def serve_files_in_background(interface, port, directory_to_serve=None):
# Now loop forever
def serve_forever():
try:
while True:
# sys.stdout.flush()
httpd.serve_forever()
except (KeyboardInterrupt, OSError):
httpd.server_close()
# try:
while True:
# sys.stdout.flush()
httpd.serve_forever()
# except (KeyboardInterrupt, OSError):
# httpd.server_close()
thread = threading.Thread(target=serve_forever, daemon=True)
thread.start()

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: gradio
Version: 0.7.4
Version: 0.7.5
Summary: Python library for easily interacting with trained machine learning models
Home-page: https://github.com/abidlabs/gradio
Author: Abubakar Abid

View File

@ -249,12 +249,12 @@ def serve_files_in_background(interface, port, directory_to_serve=None):
# Now loop forever
def serve_forever():
try:
while True:
# sys.stdout.flush()
httpd.serve_forever()
except (KeyboardInterrupt, OSError):
httpd.server_close()
# try:
while True:
# sys.stdout.flush()
httpd.serve_forever()
# except (KeyboardInterrupt, OSError):
# httpd.server_close()
thread = threading.Thread(target=serve_forever, daemon=True)
thread.start()

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name='gradio',
version='0.7.4',
version='0.7.5',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid',