File: progressbar.patch

package info (click to toggle)
ont-fast5-api 4.1.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,548 kB
  • sloc: python: 3,799; makefile: 153; sh: 13
file content (26 lines) | stat: -rw-r--r-- 1,075 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Use package python3-progressbar instead of progressbar33 - latter is repleaceable
Author: Nilesh Patra <nilesh@debian.org>
Forwarded: not-needed
Last-Updated: May 26, 2021
--- a/ont_fast5_api/conversion_tools/conversion_utils.py
+++ b/ont_fast5_api/conversion_tools/conversion_utils.py
@@ -97,7 +97,7 @@
     if bad_progressbar_version:
         raise RuntimeError('Wrong progressbar package detected, likely '
                            '"progressbar2". Please uninstall that package and '
-                           'install "progressbar33" instead.')
+                           'install "progressbar" instead.')
 
     return progress_bar.start()
 
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@
     installation_requirements = ['h5py>=2.10',
                                  'numpy>=1.16',
                                  'packaging',
-                                 'progressbar33>=2.3.1']
+                                 'progressbar>=2.3.1']
 
 setup(name=__pkg_name__.replace("_", "-"),
       author='Oxford Nanopore Technologies, Limited',