This script will push a new ``'stable'`` version of the current package on GitHub and PyPI, and update the new version of the package to the given ``'latest'`` version.
print ("\nReplacing travis branch tag in README.rst")
_update_readme()
print ("\nSetting latest version '%s'"%args.latest_version)
run_commands(args.latest_version,['git','add','version.txt'],['git','commit','-m','Increased latest version to %s [skip ci]'%args.latest_version],['git','push'])
run_commands(args.latest_version,['git','add','version.txt','README.rst'],['git','commit','-m','Increased latest version to %s [skip ci]'%args.latest_version],['git','push'])