Changeset - d58de74e1d44
[Not reviewed]
1 0 1
Lance Edgar (lance) - 6 years ago 2018-02-24 12:44:56
lance@edbob.org
Use invoke instead of fabric, for release task
1 file changed with 6 insertions and 7 deletions:
0 comments (0 inline, 0 general)
tasks.py
Show inline comments
 
file renamed from fabfile.py to tasks.py
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
# -*- coding: utf-8; -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#  Copyright © 2013-2018 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
@@ -22,16 +21,16 @@
 
#
 
################################################################################
 

	
 
from __future__ import unicode_literals, absolute_import
 

	
 
import shutil
 
from fabric.api import task, local
 
from invoke import task
 

	
 

	
 
@task
 
def release():
 
def release(ctx):
 
    """
 
    Release a new version of 'sqlalchemy-pervasive'.
 
    """
 

	
 
    shutil.rmtree('sqlalchemy_pervasive.egg-info')
 
    local('python setup.py sdist --formats=gztar register upload')
 
    ctx.run('python setup.py sdist --formats=gztar upload')
0 comments (0 inline, 0 general)