which pip-compile >> /dev/null
if [[ $? != 0 ]]
then
   echo "pip-tools are required in order to run this script."
   echo "Please install it:"
   echo ""
   echo "pip3 install pip-tools"
   exit 1
fi

pip-compile requirements.in
pip-compile dev-requirements.in
