From 012a651586b0332b6f7753111fd008f7597019b5 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sat, 23 Jan 2016 07:16:45 -0800 Subject: [PATCH] v0.7.0 --- panoramix/utils.py | 6 ------ setup.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/panoramix/utils.py b/panoramix/utils.py index 70c8146a1c..f8eda5c46b 100644 --- a/panoramix/utils.py +++ b/panoramix/utils.py @@ -131,12 +131,6 @@ class ColorFactory(object): self.hash_based = hash_based def get(self, s): - """ - Get a consistent color from the same string using a hash function - - >>> color("foo") - '#FF5A5F' - """ if self.hash_based: s = s.encode('utf-8') h = hashlib.md5(s) diff --git a/setup.py b/setup.py index 6648e11af2..9c63d66018 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.6.1' +version = '0.7.0' setup( name='panoramix',