libextractor-python

GNU libextractor
Log | Files | Refs | README | LICENSE

commit ed97731d763af70f72bf84c259a676e166661d90
parent fc78735e6195748861787815bdeb73e23744150d
Author: Nils Gillmann <gillmann@infotropique.org>
Date:   Sat,  9 Jun 2018 20:44:33 +0000

fix wrong version number

Signed-off-by: Nils Gillmann <gillmann@infotropique.org>

Diffstat:
Mlibextractor/extractor.py | 2+-
Msetup.py | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libextractor/extractor.py b/libextractor/extractor.py @@ -41,7 +41,7 @@ except OSError: libextractor = cdll.extractor __all__ = ['Extractor'] -__version__ = "0.7" +__version__ = "1.7" __licence__ = "GNU GPL" """ diff --git a/setup.py b/setup.py @@ -6,7 +6,7 @@ except ImportError: setup( name = "Extractor", - version = "0.7", + version = "1.7", packages = ['libextractor'], scripts = ['examples/extract.py'],