diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2020-06-18 10:33:02 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2020-06-18 10:34:56 +0200 |
commit | c4a7abd99f96f37ef0b18b1fd8e3660470a98829 (patch) | |
tree | 53dcb0e00cb7cf3c144948b25eb65f7fe79ac5ef /setup.py | |
parent | b5a7cf08178b587942c63eb119f66a5411503d1a (diff) | |
download | epubgrep-c4a7abd99f96f37ef0b18b1fd8e3660470a98829.tar.gz |
Make epubgrep concurrent for speed improvement.0.4.0
Surprisingly ProcessPoolExecutor is vastly faster and less memory
demanding than ThreadPoolExecutor.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="epubgrep", - version="0.3.0", + version="0.4.0", description='Grep through EPub files', author=u'Matěj Cepl', author_email='mcepl@cepl.eu', |