* Allow bower install of frontend components as root. Needed for frontend development in docker since everything runs as root in the docker image. * Improve development workflow in docker * Use LANG=C.UTF-8 in tox. Fixes installation of libraries with UTF-8 in it's readme. * Install mysqlclient psycopg2 uvloop after requirements_all.txt again, but with a --no-cache-dir this time. Allows bootstrap_frontend to be executed in a different path like the other scripts.
33 lines
617 B
Bash
Executable file
33 lines
617 B
Bash
Executable file
#!/bin/sh
|
|
# Pushes a new version to PyPi.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
head -n 5 homeassistant/const.py | tail -n 1 | grep PATCH_VERSION > /dev/null
|
|
|
|
if [ $? -eq 1 ]
|
|
then
|
|
echo "Patch version not found on const.py line 5"
|
|
exit 1
|
|
fi
|
|
|
|
head -n 5 homeassistant/const.py | tail -n 1 | grep dev > /dev/null
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo "Release version should not contain dev tag"
|
|
exit 1
|
|
fi
|
|
|
|
CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
|
|
if [ "$CURRENT_BRANCH" != "master" ]
|
|
then
|
|
echo "You have to be on the master branch to release."
|
|
exit 1
|
|
fi
|
|
|
|
python3 setup.py sdist bdist_wheel upload
|