diff --git a/requirements/python b/requirements/python index db6be91..1f92b61 100644 --- a/requirements/python +++ b/requirements/python @@ -8,7 +8,9 @@ phonenumbers python-stdnum # For the DateOfBirthDetector, master version due to an unfixed bug... but which one? -dateparser @ git+https://github.com/scrapinghub/dateparser.git +# Can't upload to PyPi with a dependency on a GH repo, so removed link to dateparser repo +dateparser +# @ git+https://github.com/scrapinghub/dateparser.git # For the detector/post-processor catalogues catalogue diff --git a/scrubadub/__init__.py b/scrubadub/__init__.py index e32e7b4..329583f 100644 --- a/scrubadub/__init__.py +++ b/scrubadub/__init__.py @@ -8,7 +8,7 @@ from . import post_processors from .filth import Filth -__version__ = VERSION = "2.0.0.rc1" +__version__ = VERSION = "2.0.0" __all__ = [ 'Scrubber', 'filth', 'detectors', 'post_processors', 'clean', 'clean_documents', 'list_filth', 'list_filth_documents',