Lower bound Python version to 3.7 (#1480)

* Lower bound Python version to 3.7

* Update doc
This commit is contained in:
Simon Mo 2022-06-07 12:00:29 -07:00 committed by GitHub
parent cc6aeb6d72
commit ddd7fa13dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,7 @@ Gradio allows you to **build demos and share them, all in Python.** And usually
To get Gradio running with a simple "Hello, World" example, follow these three steps:
<span>1.</span> Install Gradio from pip.
<span>1.</span> Install Gradio from pip. Note, the minimal supported Python version is 3.7.
```bash
pip install gradio

View File

@ -42,4 +42,5 @@ setup(
entry_points={
'console_scripts': ['gradio=gradio.reload:run_in_reload_mode']
},
python_requires='>=3.7',
)