view fabfile.py @ 20:919c23ed90ec

version 0.7.0 Ignore-this: 9adde535d7c5d784ef1375c33d5f81ab
author drewp@bigasterisk.com
date Fri, 04 Jan 2019 23:17:30 +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/'])