1
0
forked from pool/python-xarray
python-xarray/scipy-interpolate.patch
Sebastian Wagner 15f5c83eeb Accepting request 895529 from home:mcepl:branches:devel:languages:python:numeric
- Add local_dataset.patch allowing the use of the cached datasets
  (gh#pydata/xarray#5377).
- Add scipy-interpolate.patch adding a missing import
  scipy.interpolate to test_interp.py (gh#pydata/xarray#5375).
- Add test_resample_loffset.patch to fix test_resample_loffset
  test (gh#pydata/xarray#5364).

OBS-URL: https://build.opensuse.org/request/show/895529
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-xarray?expand=0&rev=53
2021-05-27 06:19:25 +00:00

15 lines
291 B
Diff

---
xarray/tests/test_interp.py | 1 +
1 file changed, 1 insertion(+)
--- a/xarray/tests/test_interp.py
+++ b/xarray/tests/test_interp.py
@@ -20,6 +20,7 @@ from .test_dataset import create_test_da
try:
import scipy
+ import scipy.interpolate
except ImportError:
pass