updated PyPi version to 2.7.5

This commit is contained in:
Ali Abid 2022-01-21 10:25:35 -08:00
parent 53743594ce
commit 0c673aaa1b
7 changed files with 23578 additions and 126 deletions

23680
frontend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -36,7 +36,7 @@
"scripts": {
"start": "cross-env REACT_APP_BACKEND_URL='http://localhost:7860/' craco start",
"format": "prettier-eslint --write '**/*.js*'",
"build": "cross-env REACT_APP_BACKEND_URL='' REACT_APP_VERSION=$(cat ../gradio/version.txt) GENERATE_SOURCEMAP=false craco build",
"build": "REACT_APP_BACKEND_URL='' REACT_APP_VERSION=$(cat ../gradio/version.txt) GENERATE_SOURCEMAP=false craco build",
"build:win": "cross-env REACT_APP_BACKEND_URL='' GENERATE_SOURCEMAP=false craco build",
"eject": "react-scripts eject"
},

View File

@ -1,11 +1,14 @@
Metadata-Version: 1.0
Metadata-Version: 2.1
Name: gradio
Version: 2.7.4
Version: 2.7.5
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
Author-email: team@gradio.app
License: Apache License 2.0
Description: UNKNOWN
Keywords: machine learning,visualization,reproducibility
Platform: UNKNOWN
License-File: LICENSE
UNKNOWN

View File

@ -1,5 +1,5 @@
aiohttp
analytics-python
aiohttp
fastapi
ffmpy
markdown2
@ -9,7 +9,7 @@ pandas
paramiko
pillow
pycryptodome
pydub
python-multipart
pydub
requests
uvicorn

View File

@ -1 +1 @@
2.7.4.1
2.7.5

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name="gradio",
version="2.7.4.1",
version="2.7.5",
include_package_data=True,
description="Python library for easily interacting with trained machine learning models",
author="Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq",

View File

@ -1,11 +1,12 @@
#!/bin/bash
set -e
git pull origin master
old_version=$(grep -Po "(?<=version=\")[^\"]+(?=\")" setup.py)
old_version=$(ggrep -Po "(?<=version=\")[^\"]+(?=\")" setup.py)
echo "Current version is $old_version. New version?"
read new_version
sed -i "s/version=\"$old_version\"/version=\"$new_version\"/g" setup.py
gsed -i "s/version=\"$old_version\"/version=\"$new_version\"/g" setup.py
read -p "frontend updates? " -r
if [[ $REPLY =~ ^[Yy]$ ]]