Skip to content

Commit 28c66f7

Browse files
rgommersgrlee77
authored andcommitted
MAINT: fix readthedocs build issue, update numpy version specifier
Also fix a couple of very minor style issues.
1 parent 25ac274 commit 28c66f7

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

pywt/_multidim.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ def idwt2(coeffs, wavelet, mode='symmetric', axes=(-2, -1)):
8585
Wavelet to use
8686
mode : str, optional
8787
Signal extension mode, see Modes (default: 'symmetric')
88-
details coefficients 2D arrays like from `dwt2`. If any of these
89-
components are set to ``None``, it will be treated as zeros.
9088
axes : 2-tuple of ints, optional
9189
Axes over which to compute the IDWT. Repeated elements mean the IDWT
9290
will be performed multiple times along these axes.

pywt/tests/test_multilevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def test_waverec_axes_subsets():
487487

488488

489489
def test_waverec_axis_db2():
490-
"""test for fix to issue gh-293"""
490+
# test for fix to issue gh-293
491491
rstate = np.random.RandomState(0)
492492
data = rstate.standard_normal((16, 16))
493493
for axis in [0, 1]:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,5 +258,5 @@ def install_for_development(self):
258258
test_suite='nose.collector',
259259

260260
# A function is imported in setup.py, so not really useful
261-
install_requires=["numpy"],
261+
install_requires=["numpy>=1.9.1"],
262262
)

util/readthedocs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# fix the versions of numpy to force the use of numpy to use the whl
99
# of the rackspace folder instead of trying to install from more recent
1010
# source tarball published on PyPI
11-
numpy==1.8.1
11+
numpy==1.9.1
1212
Cython==0.20.2
1313
nose
1414
wheel

0 commit comments

Comments
 (0)