From 6c0cef0f08b9c91a77c64c65660eb42aa21ebb98 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 30 Sep 2016 14:37:58 +0200 Subject: [PATCH] 0.8.0-rc.7 --- fabfile.py | 22 +--------------------- requirements.txt | 2 +- umap/__init__.py | 2 +- 3 files changed, 3 insertions(+), 23 deletions(-) diff --git a/fabfile.py b/fabfile.py index 4cb61db7..f8b4bda2 100644 --- a/fabfile.py +++ b/fabfile.py @@ -138,27 +138,7 @@ def update(action='check'): updating requirements. Anything else other than ``'check'`` will avoid updating requirements at all. """ - with cd(env.project_dir): - remote, dest_branch = env.remote_ref.split('/', 1) - run_as_umap('git fetch {remote}'.format(remote=remote)) - with hide('running', 'stdout'): - changed_files = run('git diff-index --cached --name-only ' - '{remote_ref}'.format(**env)).splitlines() - if not changed_files and action != 'force': - # No changes, we can exit now. - return - if action == 'check': - reqs_changed = env.requirements_file in changed_files - else: - reqs_changed = False - run_as_umap('git merge {remote_ref}'.format(**env)) - run_as_umap('find -name "*.pyc" -delete') - if action == "clean": - run_as_umap('git clean -df') - if action == 'force' or reqs_changed: - # Not using execute() because we don't want to run multiple times for - # each role (since this task gets run per role). - requirements() + run_as_umap('pip install git+https://github.com/umap-project/umap') @task diff --git a/requirements.txt b/requirements.txt index 7167a32f..0eacf6e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ Pillow==3.3.1 psycopg2==2.6.2 python-social-auth==0.2.21 requests==2.11.1 -django-leaflet-storage==0.8.0rc6 +django-leaflet-storage==0.8.0rc7 diff --git a/umap/__init__.py b/umap/__init__.py index e56288b4..f9983073 100644 --- a/umap/__init__.py +++ b/umap/__init__.py @@ -1,5 +1,5 @@ "Create maps with OpenStreetMap layers in a minute and embed them in your site." -VERSION = (0, 8, 0, 'rc', 6) +VERSION = (0, 8, 0, 'rc', 7) __author__ = 'Yohan Boniface' __contact__ = "ybon@openstreetmap.fr"