From 30e7f2654fd695b77671ca3dc0d1e364447ed830 Mon Sep 17 00:00:00 2001 From: Dean Malmgren Date: Sat, 31 Oct 2015 13:41:18 -0500 Subject: [PATCH] more fixes for installation --- docs/changelog.rst | 2 +- scrubadub/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 46c76e00..939f544a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,7 +11,7 @@ latest changes in development for next release .. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE! -1.0.1 +1.0.2 ----- * several bug fixes, including: diff --git a/scrubadub/__init__.py b/scrubadub/__init__.py index 471dd869..1bdf2396 100644 --- a/scrubadub/__init__.py +++ b/scrubadub/__init__.py @@ -4,7 +4,7 @@ from . import filth from . import detectors -__version__ = VERSION = "1.0.1" +__version__ = VERSION = "1.0.2" def clean(text, cls=None, **kwargs): diff --git a/setup.py b/setup.py index 35aa0da9..7638c4df 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ with open(os.path.join('scrubadub', '__init__.py')) as stream: for line in stream: if 'version' in line.lower(): - version = line.split()[-1] + version = line.split()[-1].replace('"', '').replace("'", '') setup( name='scrubadub',