summaryrefslogtreecommitdiff
path: root/pavement.py
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-02-07 15:38:15 +0000
committerAsk Solem <ask@celeryproject.org>2013-02-07 15:38:15 +0000
commit67d2fa4744f681a56cab69aa706cc3eb67bdd296 (patch)
tree5dde2591b2dae191740d478a0cd85dd075466270 /pavement.py
parentcc8b99b237019d0904c3da05850895db6b924a75 (diff)
parent7c5dc19be1953e94fdf04adf016f91292677e144 (diff)
downloadkombu-67d2fa4744f681a56cab69aa706cc3eb67bdd296.tar.gz
Merge branch '2.5'
Conflicts: pavement.py
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py
index f15cbe68..57f8ce97 100644
--- a/pavement.py
+++ b/pavement.py
@@ -7,7 +7,7 @@ from paver.setuputils import setup # noqa
PYCOMPILE_CACHES = ['*.pyc', '*$py.class']
options(
- sphinx=Bunch(builddir='.build'),
+ sphinx=Bunch(builddir='.build'),
)
@@ -91,9 +91,15 @@ def readme(options):
])
def bump(options):
s = "-- '%s'" % (options.custom, ) \
+<<<<<<< HEAD
if getattr(options, 'custom', None) else ''
sh('extra/release/bump_version.py \
kombu/__init__.py README.rst %s' % (s, ))
+=======
+ if getattr(options, "custom", None) else ""
+ sh("extra/release/bump_version.py \
+ kombu/__init__.py README.rst %s" % (s, ))
+>>>>>>> 2.5
@task
@@ -129,6 +135,7 @@ def flake8(options):
}{exit $FOUND_FLAKE;
'""" % (complexity, migrations_path), ignore_error=noerror)
+
@task
@cmdopts([
('noerror', 'E', 'Ignore errors'),