From d86a16847805fe017b71661fea604eaeea3c4be4 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 3 Feb 2017 09:25:47 +0100 Subject: [PATCH] 0.8.0 --- requirements.txt | 2 +- setup.py | 2 +- umap/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0179cc5b..76ae1e37 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ Django==1.10.5 django-compressor==2.1.1 -django-leaflet-storage==0.8.0rc13 +django-leaflet-storage==0.8.0 Pillow==4.0.0 psycopg2==2.6.2 requests==2.13.0 diff --git a/setup.py b/setup.py index bd81b852..f998b162 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ with io.open('requirements.txt', encoding='utf-8') as reqs: install_requires = [l for l in reqs.read().split('\n') if is_pkg(l)] setup( - name="umap", + name="umap-project", version=umap.__version__, author=umap.__author__, author_email=umap.__contact__, diff --git a/umap/__init__.py b/umap/__init__.py index 9c98096d..0761e822 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', 13) +VERSION = (0, 8, 0) __author__ = 'Yohan Boniface' __contact__ = "ybon@openstreetmap.fr"