view fabfile.py @ 11:239eb42543ce

version 0.3.0 Ignore-this: bd1278f36e52a90c26a08cefe10f7414
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 19 Feb 2018 10:29:01 +0000
parents 85873cde659b
children
line wrap: on
line source

from subprocess import check_call, check_output, CalledProcessError

def release():
    try:
        check_call(['darcs', 'wh', 'rdfdb/patch.py'])
        raise SystemExit("\n^^ record these changes first")
    except CalledProcessError: # nothing new
        pass
    ver = check_output(['env/bin/bump', '-qm', 'setup.py']).strip()
    check_call(['darcs', 'rec', '--all', '--name', "version %s" % ver, '.'])
    check_call(['python', 'setup.py', 'sdist'])
    check_call(['cp', 'dist/rdfdb-%s.tar.gz' % ver, '/my/site/projects/rdfdb/'])