view fabfile.py @ 15:35e6e1211c49

don't require receiverhost. we need to open a 2-way connection anyhow Ignore-this: 8b4ad326c2fe67db9b75263b088a2568
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 26 Apr 2018 08:24:27 +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/'])