[med-svn] [Git][med-team/nitime][master] 5 commits: Add patch to fix test_psd_matlab (Closes: #1027550)
Nilesh Patra (@nilesh)
gitlab at salsa.debian.org
Sun Jan 1 19:14:13 GMT 2023
Nilesh Patra pushed to branch master at Debian Med / nitime
Commits:
8d0239b5 by Nilesh Patra at 2023-01-02T00:14:27+05:30
Add patch to fix test_psd_matlab (Closes: #1027550)
- - - - -
0d4ac120 by Nilesh Patra at 2023-01-02T00:14:47+05:30
Bump Standards-Version to 4.6.2 (no changes needed)
- - - - -
6edf397d by Nilesh Patra at 2023-01-02T00:15:00+05:30
Upload to unstable
- - - - -
f7b15c29 by Nilesh Patra at 2023-01-02T00:31:22+05:30
docs/conf.py: Look in axes_grid1 instead of axes_grid
- - - - -
e863169b by Nilesh Patra at 2023-01-02T00:31:45+05:30
Upload to unstable
- - - - -
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/fix-psd-test.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+nitime (0.9-4) unstable; urgency=medium
+
+ * Add patch to fix test_psd_matlab (Closes: #1027550)
+ * docs/conf.py: Look in axes_grid1 instead of axes_grid
+ * Bump Standards-Version to 4.6.2 (no changes needed)
+
+ -- Nilesh Patra <nilesh at debian.org> Mon, 02 Jan 2023 00:14:51 +0530
+
nitime (0.9-3) unstable; urgency=medium
* Add patch to not set ws lower bound to zero (Closes: #1013569)
=====================================
debian/control
=====================================
@@ -19,7 +19,7 @@ Build-Depends: debhelper-compat (= 13),
python3-setuptools,
python3-pytest,
graphviz
-Standards-Version: 4.6.0
+Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/med-team/nitime
Vcs-Git: https://salsa.debian.org/med-team/nitime.git
Homepage: https://nipy.org/nitime
=====================================
debian/patches/fix-psd-test.patch
=====================================
@@ -0,0 +1,26 @@
+Description: noverlap param in psd function should be an integer, cast it explicitly
+ Also, look in axes_grid1 instead of axes_grid in mpl_toolkits
+Author: Nilesh Patra <nilesh at debian.org>
+Last-Update: 2023-01-02
+--- a/nitime/tests/test_algorithms.py
++++ b/nitime/tests/test_algorithms.py
+@@ -149,7 +149,7 @@
+
+ NFFT = 256
+ Fs = 1.0
+- noverlap = NFFT / 2
++ noverlap = int(NFFT / 2)
+
+ fxx, f = mlab.psd(ts0, NFFT=NFFT, Fs=Fs, noverlap=noverlap,
+ scale_by_freq=True)
+--- a/doc/conf.py
++++ b/doc/conf.py
+@@ -23,7 +23,7 @@
+ # is a string that should be a valid (possibly dotted) package name, and the
+ # second a list (possibly empty) of names to import from that package.
+ doc_deps = [['networkx', []],
+- ['mpl_toolkits.axes_grid', ['make_axes_locatable']],
++ ['mpl_toolkits.axes_grid1', ['make_axes_locatable']],
+ ]
+
+ # Analyze the dependencies, and fail if any is unmet, with a hopefully
=====================================
debian/patches/series
=====================================
@@ -2,3 +2,4 @@ deb_no_sources_for_docs
python3
sphinx_ignore_github.patch
do-not-set-lowerbound-zero-in-iir.patch
+fix-psd-test.patch
View it on GitLab: https://salsa.debian.org/med-team/nitime/-/compare/7eee2d89e7110574285f84c68962795ad7b51aa0...e863169b4b32411a5aebd8f55aa0b471c62460ca
--
View it on GitLab: https://salsa.debian.org/med-team/nitime/-/compare/7eee2d89e7110574285f84c68962795ad7b51aa0...e863169b4b32411a5aebd8f55aa0b471c62460ca
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/20230101/f728d46e/attachment-0001.htm>
More information about the debian-med-commit
mailing list