[med-svn] [Git][med-team/nitime][master] 2 commits: Add patch to not set ws lower bound to zero (Closes: #1013569)

Nilesh Patra (@nilesh) gitlab at salsa.debian.org
Mon Jul 11 14:07:22 BST 2022



Nilesh Patra pushed to branch master at Debian Med / nitime


Commits:
7a00bbef by Nilesh Patra at 2022-07-11T12:58:53+00:00
Add patch to not set ws lower bound to zero (Closes: #1013569)

- - - - -
7eee2d89 by Nilesh Patra at 2022-07-11T18:30:15+05:30
Upload to unstable

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/do-not-set-lowerbound-zero-in-iir.patch
- debian/patches/series


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+nitime (0.9-3) unstable; urgency=medium
+
+  * Add patch to not set ws lower bound to zero (Closes: #1013569)
+
+ -- Nilesh Patra <nilesh at debian.org>  Mon, 11 Jul 2022 18:30:08 +0530
+
 nitime (0.9-2) unstable; urgency=medium
 
   * Switch to pytest instead of nose


=====================================
debian/patches/do-not-set-lowerbound-zero-in-iir.patch
=====================================
@@ -0,0 +1,15 @@
+Description: While doing iir filter, lower bound for ws can be set to 0 which scipy no longer seems to allow
+ Hence set it to a very small non-zero val.
+Author: Nilesh Patra <nilesh at debian.org>
+Last-Update: 2022-07-11
+--- a/nitime/analysis/spectral.py
++++ b/nitime/analysis/spectral.py
+@@ -418,7 +418,7 @@
+ 
+             wp = [lb_frac, ub_frac]
+ 
+-            ws = [np.max([lb_frac - 0.1, 0]),
++            ws = [np.max([lb_frac - 0.1, 1e-10]),
+                   np.min([ub_frac + 0.1, 1.0])]
+ 
+         # For the lowpass:


=====================================
debian/patches/series
=====================================
@@ -1,3 +1,4 @@
 deb_no_sources_for_docs
 python3
 sphinx_ignore_github.patch
+do-not-set-lowerbound-zero-in-iir.patch



View it on GitLab: https://salsa.debian.org/med-team/nitime/-/compare/e81a9fad335ba48c73eed42cd779c232dee1aeb6...7eee2d89e7110574285f84c68962795ad7b51aa0

-- 
View it on GitLab: https://salsa.debian.org/med-team/nitime/-/compare/e81a9fad335ba48c73eed42cd779c232dee1aeb6...7eee2d89e7110574285f84c68962795ad7b51aa0
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20220711/fa8620c4/attachment-0001.htm>


More information about the debian-med-commit mailing list