Skip to content

Commit 30e7f26

Browse files
author
Dean Malmgren
committed
more fixes for installation
1 parent be785db commit 30e7f26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ latest changes in development for next release
1111

1212
.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1313
14-
1.0.1
14+
1.0.2
1515
-----
1616

1717
* several bug fixes, including:

scrubadub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from . import filth
55
from . import detectors
66

7-
__version__ = VERSION = "1.0.1"
7+
__version__ = VERSION = "1.0.2"
88

99

1010
def clean(text, cls=None, **kwargs):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
with open(os.path.join('scrubadub', '__init__.py')) as stream:
2323
for line in stream:
2424
if 'version' in line.lower():
25-
version = line.split()[-1]
25+
version = line.split()[-1].replace('"', '').replace("'", '')
2626

2727
setup(
2828
name='scrubadub',

0 commit comments

Comments
 (0)