diff --git a/COPYING b/COPYING
index 7cd7b82385b43a76797fb2995e55da74a5b153eb..b242b98048e8f58273f4b4458f534129eededd92 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,5 @@
 Copyright 2014-2016 Jim Rybarski, 2017 Ruben Verweij
+Copyright 2020-2021 Lorenzo Zolfanelli, ESPCI Paris - PSL
 
 nd2reader is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/nd2reader/parser.py b/nd2reader/parser.py
index 814712848dfd7dea3afd3c4d14d1e0f49c756a19..2f7b58d0ea9cf9739b01f76cdbc183e0d3a22aef 100644
--- a/nd2reader/parser.py
+++ b/nd2reader/parser.py
@@ -332,7 +332,7 @@ class Parser(object):
             fh.seek(image_start_pos + size_c*2*((width)*y+x0) + y*rowskip)
             return np.frombuffer(fh.read(size_c*2*w), np.byte)[line_bytemask]
 
-        data = [get_line(y) for y in tqdm(range(y0, y0+h))]
+        data = [get_line(y) for y in range(y0, y0+h)]
         data = bytes().join(data)
 
         image_group_data = array.array("H", data)
diff --git a/setup.py b/setup.py
index 0ade4f4841be0e2f4abe696fd5e63794492eb373..bf52e5b349ed7e062a42e4a25da10a5884167824 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
 from setuptools import setup
-from nd2reader import __version__ as VERSION
+#from nd2reader import __version__ as VERSION
 
 if __name__ == '__main__':
     setup(
@@ -9,14 +9,14 @@ if __name__ == '__main__':
             'numpy>=1.6.2',
             'six>=1.4',
             'xmltodict>=0.9.2',
-            'pims>=0.3.0'
+            'PIMS>=0.5.0'
         ],
-        version=VERSION,
+        version="3.2.3-zolfa-dev0",
         description='A tool for reading ND2 files produced by NIS Elements',
         author='Ruben Verweij',
         author_email='ruben@lighthacking.nl',
         url='https://github.com/rbnvrw/nd2reader',
-        download_url='https://github.com/rbnvrw/nd2reader/tarball/%s' % VERSION,
+        download_url='https://github.com/rbnvrw/nd2reader/tarball/%s' % "3.2.3-zolfa-dev0",
         keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'],
         classifiers=['Development Status :: 5 - Production/Stable',
                      'Intended Audience :: Science/Research',