Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3838454055 |
@@ -2,9 +2,3 @@
|
|||||||
/xarray-data-870b5d7a9dbfa821423f1b88056890c22341f085.tar.gz
|
/xarray-data-870b5d7a9dbfa821423f1b88056890c22341f085.tar.gz
|
||||||
/RGB.byte.tif
|
/RGB.byte.tif
|
||||||
/xarray-0.12.3.tar.gz
|
/xarray-0.12.3.tar.gz
|
||||||
/xarray-0.15.0.tar.gz
|
|
||||||
/xarray-0.15.1.tar.gz
|
|
||||||
/xarray-0.16.0.tar.gz
|
|
||||||
/xarray-data-5fdb22b5613ba8176b9f6fa67be783d7810643eb.tar.gz
|
|
||||||
/xarray-0.16.1.tar.gz
|
|
||||||
/xarray-0.16.2.tar.gz
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
From e1fe3194dcf9878b2e1895404ff13c0338ad0e1f Mon Sep 17 00:00:00 2001
|
From 63fc5acba81601e473ead5c4e82de78b5ae61ad0 Mon Sep 17 00:00:00 2001
|
||||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
Date: Fri, 15 Mar 2019 22:31:18 -0400
|
Date: Fri, 15 Mar 2019 22:31:18 -0400
|
||||||
Subject: [PATCH 1/4] DOC: Don't download RGB.byte.tif during build.
|
Subject: [PATCH 1/4] DOC: Don't download RGB.byte.tif during build.
|
||||||
@@ -10,31 +10,31 @@ Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|||||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/doc/gallery/plot_rasterio.py b/doc/gallery/plot_rasterio.py
|
diff --git a/doc/gallery/plot_rasterio.py b/doc/gallery/plot_rasterio.py
|
||||||
index 99eb1fd1..3d797296 100644
|
index 82d5ce61..24502f10 100644
|
||||||
--- a/doc/gallery/plot_rasterio.py
|
--- a/doc/gallery/plot_rasterio.py
|
||||||
+++ b/doc/gallery/plot_rasterio.py
|
+++ b/doc/gallery/plot_rasterio.py
|
||||||
@@ -23,7 +23,7 @@ from rasterio.warp import transform
|
@@ -24,7 +24,7 @@ from rasterio.warp import transform
|
||||||
import xarray as xr
|
import xarray as xr
|
||||||
|
|
||||||
# Read the data
|
# Read the data
|
||||||
-url = "https://github.com/mapbox/rasterio/raw/master/tests/data/RGB.byte.tif"
|
-url = 'https://github.com/mapbox/rasterio/raw/master/tests/data/RGB.byte.tif'
|
||||||
+url = "RGB.byte.tif"
|
+url = 'RGB.byte.tif'
|
||||||
da = xr.open_rasterio(url)
|
da = xr.open_rasterio(url)
|
||||||
|
|
||||||
# Compute the lon/lat coordinates with rasterio.warp.transform
|
# Compute the lon/lat coordinates with rasterio.warp.transform
|
||||||
diff --git a/doc/gallery/plot_rasterio_rgb.py b/doc/gallery/plot_rasterio_rgb.py
|
diff --git a/doc/gallery/plot_rasterio_rgb.py b/doc/gallery/plot_rasterio_rgb.py
|
||||||
index 758d4cd3..f2a7b2db 100644
|
index 23a56d5a..468e2bab 100644
|
||||||
--- a/doc/gallery/plot_rasterio_rgb.py
|
--- a/doc/gallery/plot_rasterio_rgb.py
|
||||||
+++ b/doc/gallery/plot_rasterio_rgb.py
|
+++ b/doc/gallery/plot_rasterio_rgb.py
|
||||||
@@ -18,7 +18,7 @@ import matplotlib.pyplot as plt
|
@@ -19,7 +19,7 @@ import matplotlib.pyplot as plt
|
||||||
import xarray as xr
|
import xarray as xr
|
||||||
|
|
||||||
# Read the data
|
# Read the data
|
||||||
-url = "https://github.com/mapbox/rasterio/raw/master/tests/data/RGB.byte.tif"
|
-url = 'https://github.com/mapbox/rasterio/raw/master/tests/data/RGB.byte.tif'
|
||||||
+url = "RGB.byte.tif"
|
+url = 'RGB.byte.tif'
|
||||||
da = xr.open_rasterio(url)
|
da = xr.open_rasterio(url)
|
||||||
|
|
||||||
# The data is in UTM projection. We have to set it manually until
|
# The data is in UTM projection. We have to set it manually until
|
||||||
--
|
--
|
||||||
2.26.2
|
2.21.0
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
From 1f0ab97be49d2fef87f0da7ca2bab33be41e2480 Mon Sep 17 00:00:00 2001
|
From 90f116ffbf6eb403d4ddd44e6b9bafddced99419 Mon Sep 17 00:00:00 2001
|
||||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
Date: Fri, 15 Mar 2019 22:48:25 -0400
|
Date: Fri, 15 Mar 2019 22:48:25 -0400
|
||||||
Subject: [PATCH 2/4] DOC: Skip examples using unpackaged dependencies.
|
Subject: [PATCH 2/4] DOC: Skip examples using unpackaged dependencies.
|
||||||
@@ -9,19 +9,19 @@ Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|||||||
1 file changed, 2 insertions(+)
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
diff --git a/doc/io.rst b/doc/io.rst
|
diff --git a/doc/io.rst b/doc/io.rst
|
||||||
index 5119bac1..a2d70436 100644
|
index 85cb73a0..60990627 100644
|
||||||
--- a/doc/io.rst
|
--- a/doc/io.rst
|
||||||
+++ b/doc/io.rst
|
+++ b/doc/io.rst
|
||||||
@@ -510,6 +510,7 @@ installed, xarray can convert a ``DataArray`` into a ``Cube`` using
|
@@ -373,6 +373,7 @@ installed xarray can convert a ``DataArray`` into a ``Cube`` using
|
||||||
:py:meth:`DataArray.to_iris`:
|
:py:meth:`~xarray.DataArray.to_iris`:
|
||||||
|
|
||||||
.. ipython:: python
|
.. ipython:: python
|
||||||
+ :verbatim:
|
+ :verbatim:
|
||||||
|
|
||||||
da = xr.DataArray(
|
da = xr.DataArray(np.random.rand(4, 5), dims=['x', 'y'],
|
||||||
np.random.rand(4, 5),
|
coords=dict(x=[10, 20, 30, 40],
|
||||||
@@ -524,6 +525,7 @@ Conversely, we can create a new ``DataArray`` object from a ``Cube`` using
|
@@ -385,6 +386,7 @@ Conversely, we can create a new ``DataArray`` object from a ``Cube`` using
|
||||||
:py:meth:`DataArray.from_iris`:
|
:py:meth:`~xarray.DataArray.from_iris`:
|
||||||
|
|
||||||
.. ipython:: python
|
.. ipython:: python
|
||||||
+ :verbatim:
|
+ :verbatim:
|
||||||
@@ -29,5 +29,5 @@ index 5119bac1..a2d70436 100644
|
|||||||
da_cube = xr.DataArray.from_iris(cube)
|
da_cube = xr.DataArray.from_iris(cube)
|
||||||
da_cube
|
da_cube
|
||||||
--
|
--
|
||||||
2.26.2
|
2.21.0
|
||||||
|
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
From cc094db443b53f96b32708676e515658ada8313f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
||||||
Date: Sat, 16 Mar 2019 02:59:15 -0400
|
|
||||||
Subject: [PATCH 3/4] DOC: Don't print out conda/pip environment.
|
|
||||||
|
|
||||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
||||||
---
|
|
||||||
doc/conf.py | 8 --------
|
|
||||||
1 file changed, 8 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/doc/conf.py b/doc/conf.py
|
|
||||||
index 74c3fd12..27a2f7b7 100644
|
|
||||||
--- a/doc/conf.py
|
|
||||||
+++ b/doc/conf.py
|
|
||||||
@@ -15,7 +15,6 @@
|
|
||||||
import datetime
|
|
||||||
import os
|
|
||||||
import pathlib
|
|
||||||
-import subprocess
|
|
||||||
import sys
|
|
||||||
from contextlib import suppress
|
|
||||||
|
|
||||||
@@ -29,13 +28,6 @@ allowed_failures = set()
|
|
||||||
print("python exec:", sys.executable)
|
|
||||||
print("sys.path:", sys.path)
|
|
||||||
|
|
||||||
-if "conda" in sys.executable:
|
|
||||||
- print("conda environment:")
|
|
||||||
- subprocess.run(["conda", "list"])
|
|
||||||
-else:
|
|
||||||
- print("pip environment:")
|
|
||||||
- subprocess.run(["pip", "list"])
|
|
||||||
-
|
|
||||||
print(f"xarray: {xarray.__version__}, {xarray.__file__}")
|
|
||||||
|
|
||||||
with suppress(ImportError):
|
|
||||||
--
|
|
||||||
2.26.2
|
|
||||||
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
From 2b193b193b422b322a5f5e6475ce72d9a453fb9f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
Date: Sat, 16 Mar 2019 02:42:37 -0400
|
||||||
|
Subject: [PATCH 3/4] TST: Reduce required pytest-runner version.
|
||||||
|
|
||||||
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
---
|
||||||
|
setup.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index f24392db..af5190f3 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -25,7 +25,7 @@ CLASSIFIERS = [
|
||||||
|
PYTHON_REQUIRES = '>=3.5'
|
||||||
|
INSTALL_REQUIRES = ['numpy >= 1.12', 'pandas >= 0.19.2']
|
||||||
|
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
|
||||||
|
-SETUP_REQUIRES = ['pytest-runner >= 4.2'] if needs_pytest else []
|
||||||
|
+SETUP_REQUIRES = ['pytest-runner >= 4.0'] if needs_pytest else []
|
||||||
|
TESTS_REQUIRE = ['pytest >= 2.7.1']
|
||||||
|
|
||||||
|
DESCRIPTION = "N-D labeled arrays and datasets in Python"
|
||||||
|
--
|
||||||
|
2.21.0
|
||||||
|
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
From 46ca88294c55170c442417f7341571079f1bc2a9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
Date: Sat, 16 Mar 2019 02:59:15 -0400
|
||||||
|
Subject: [PATCH 4/4] DOC: Don't print out conda/pip environment.
|
||||||
|
|
||||||
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||||
|
---
|
||||||
|
doc/conf.py | 7 -------
|
||||||
|
1 file changed, 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/doc/conf.py b/doc/conf.py
|
||||||
|
index 23766946..33bfcf9d 100644
|
||||||
|
--- a/doc/conf.py
|
||||||
|
+++ b/doc/conf.py
|
||||||
|
@@ -26,13 +26,6 @@ allowed_failures = set()
|
||||||
|
print("python exec:", sys.executable)
|
||||||
|
print("sys.path:", sys.path)
|
||||||
|
|
||||||
|
-if 'conda' in sys.executable:
|
||||||
|
- print('conda environment:')
|
||||||
|
- subprocess.run(['conda', 'list'])
|
||||||
|
-else:
|
||||||
|
- print('pip environment:')
|
||||||
|
- subprocess.run(['pip', 'list'])
|
||||||
|
-
|
||||||
|
print("xarray: %s, %s" % (xarray.__version__, xarray.__file__))
|
||||||
|
|
||||||
|
with suppress(ImportError):
|
||||||
|
--
|
||||||
|
2.21.0
|
||||||
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
From 507bf6860cc59d7a1320e39b4138418874f7ca15 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
||||||
Date: Sat, 26 Sep 2020 23:10:31 -0400
|
|
||||||
Subject: [PATCH 4/4] Revert "un-xfail the pint assert_allclose and
|
|
||||||
assert_duckarray_equal tests"
|
|
||||||
|
|
||||||
This reverts commit e045bd3e1dcbeedd31205d8ceb4186e28edc6cc2.
|
|
||||||
|
|
||||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
||||||
---
|
|
||||||
xarray/tests/test_testing.py | 14 ++++++++++++--
|
|
||||||
1 file changed, 12 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/xarray/tests/test_testing.py b/xarray/tests/test_testing.py
|
|
||||||
index 30ea6aaa..0f2ae8b3 100644
|
|
||||||
--- a/xarray/tests/test_testing.py
|
|
||||||
+++ b/xarray/tests/test_testing.py
|
|
||||||
@@ -70,7 +70,12 @@ def test_assert_allclose(obj1, obj2):
|
|
||||||
pytest.param(
|
|
||||||
quantity,
|
|
||||||
id="pint",
|
|
||||||
- marks=pytest.mark.skipif(not has_pint, reason="requires pint"),
|
|
||||||
+ marks=[
|
|
||||||
+ pytest.mark.skipif(not has_pint, reason="requires pint"),
|
|
||||||
+ pytest.mark.xfail(
|
|
||||||
+ reason="inconsistencies in the return value of pint's implementation of eq"
|
|
||||||
+ ),
|
|
||||||
+ ],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
@@ -110,7 +115,12 @@ def test_assert_duckarray_equal_failing(duckarray, obj1, obj2):
|
|
||||||
pytest.param(
|
|
||||||
quantity,
|
|
||||||
id="pint",
|
|
||||||
- marks=pytest.mark.skipif(not has_pint, reason="requires pint"),
|
|
||||||
+ marks=[
|
|
||||||
+ pytest.mark.skipif(not has_pint, reason="requires pint"),
|
|
||||||
+ pytest.mark.xfail(
|
|
||||||
+ reason="inconsistencies in the return value of pint's implementation of eq"
|
|
||||||
+ ),
|
|
||||||
+ ],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
--
|
|
||||||
2.26.2
|
|
||||||
|
|
||||||
+13
-99
@@ -1,10 +1,8 @@
|
|||||||
%global srcname xarray
|
%global srcname xarray
|
||||||
%global data_commit 5fdb22b5613ba8176b9f6fa67be783d7810643eb
|
%global data_commit 870b5d7a9dbfa821423f1b88056890c22341f085
|
||||||
|
|
||||||
%bcond_with docs
|
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 0.16.2
|
Version: 0.12.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: N-D labeled arrays and datasets in Python
|
Summary: N-D labeled arrays and datasets in Python
|
||||||
|
|
||||||
@@ -17,27 +15,21 @@ Source2: https://github.com/mapbox/rasterio/raw/1.0.21/tests/data/RGB.byt
|
|||||||
# All Fedora specific.
|
# All Fedora specific.
|
||||||
Patch0001: 0001-DOC-Don-t-download-RGB.byte.tif-during-build.patch
|
Patch0001: 0001-DOC-Don-t-download-RGB.byte.tif-during-build.patch
|
||||||
Patch0002: 0002-DOC-Skip-examples-using-unpackaged-dependencies.patch
|
Patch0002: 0002-DOC-Skip-examples-using-unpackaged-dependencies.patch
|
||||||
Patch0003: 0003-DOC-Don-t-print-out-conda-pip-environment.patch
|
Patch0003: 0003-TST-Reduce-required-pytest-runner-version.patch
|
||||||
# We do not have new enough pint.
|
Patch0004: 0004-DOC-Don-t-print-out-conda-pip-environment.patch
|
||||||
Patch0004: 0004-Revert-un-xfail-the-pint-assert_allclose-and-assert_.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3dist(cftime) >= 1
|
|
||||||
BuildRequires: python3-dask+array
|
BuildRequires: python3-dask+array
|
||||||
BuildRequires: python3-dask+dataframe
|
BuildRequires: python3-dask+dataframe
|
||||||
BuildRequires: python3dist(netcdf4) >= 1.4
|
BuildRequires: python3dist(numpy) >= 1.12
|
||||||
BuildRequires: python3dist(numpy) >= 1.15
|
BuildRequires: python3dist(pandas) >= 0.19.2
|
||||||
BuildRequires: python3dist(pandas) >= 0.25
|
|
||||||
BuildRequires: python3dist(pint)
|
|
||||||
BuildRequires: python3dist(pytest) >= 2.7.1
|
BuildRequires: python3dist(pytest) >= 2.7.1
|
||||||
|
BuildRequires: python3dist(pytest-runner)
|
||||||
BuildRequires: python3dist(pytest-xdist)
|
BuildRequires: python3dist(pytest-xdist)
|
||||||
BuildRequires: python3dist(rasterio) >= 1
|
|
||||||
BuildRequires: python3dist(seaborn)
|
BuildRequires: python3dist(seaborn)
|
||||||
BuildRequires: python3dist(setuptools) >= 41.2
|
BuildRequires: python3dist(setuptools)
|
||||||
BuildRequires: python3dist(setuptools-scm)
|
|
||||||
BuildRequires: python3dist(zarr) >= 2.3
|
|
||||||
|
|
||||||
%global _description %{expand: \
|
%global _description %{expand: \
|
||||||
Xarray (formerly xray) is an open source project and Python package that
|
Xarray (formerly xray) is an open source project and Python package that
|
||||||
@@ -65,115 +57,37 @@ Summary: %{summary}
|
|||||||
%description -n python3-%{srcname} %{_description}
|
%description -n python3-%{srcname} %{_description}
|
||||||
|
|
||||||
|
|
||||||
%if %{with docs}
|
|
||||||
%package -n python-%{srcname}-doc
|
|
||||||
Summary: xarray documentation
|
|
||||||
|
|
||||||
BuildRequires: python3dist(cartopy)
|
|
||||||
BuildRequires: natural-earth-map-data-110m
|
|
||||||
BuildRequires: natural-earth-map-data-10m
|
|
||||||
BuildRequires: python3-ipython-sphinx
|
|
||||||
BuildRequires: python3dist(jupyter-client)
|
|
||||||
BuildRequires: python3dist(matplotlib)
|
|
||||||
BuildRequires: python3dist(netcdf4)
|
|
||||||
BuildRequires: python3dist(rasterio)
|
|
||||||
BuildRequires: python3dist(sphinx)
|
|
||||||
BuildRequires: python3dist(sphinx-gallery)
|
|
||||||
BuildRequires: python3dist(sphinx-rtd-theme)
|
|
||||||
BuildRequires: python3dist(zarr)
|
|
||||||
|
|
||||||
%description -n python-%{srcname}-doc
|
|
||||||
Documentation for xarray
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{srcname}-%{version} -p1
|
%autosetup -n %{srcname}-%{version} -p1
|
||||||
|
|
||||||
%if %{with docs}
|
|
||||||
# Provide example datasets for building docs.
|
# Provide example datasets for building docs.
|
||||||
tar xf %SOURCE1 --transform='s~^\(%{srcname}-data-%{data_commit}/\)~\1.xarray_tutorial_data/~'
|
tar xf %SOURCE1 --transform='s~^\(%{srcname}-data-%{data_commit}/\)~\1.xarray_tutorial_data/~'
|
||||||
cp -p %SOURCE2 ./doc/gallery/
|
cp -p %SOURCE2 ./doc/gallery/
|
||||||
%endif
|
|
||||||
|
# Remove bundled egg-info
|
||||||
|
rm -rf %{srcname}.egg-info
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%if %{with docs}
|
|
||||||
# generate html docs
|
|
||||||
pushd doc
|
|
||||||
PYTHONPATH=${PWD}/.. HOME=${PWD}/../%{srcname}-data-%{data_commit} make html
|
|
||||||
# remove the sphinx-build leftovers
|
|
||||||
rm -rf _build/html/.{doctrees,buildinfo}
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
rm -rf xarray
|
%{__python3} setup.py test --addopts='-ra -n auto -m "not network"'
|
||||||
%{pytest} -ra -n auto -m "not network" --pyargs xarray
|
|
||||||
|
|
||||||
|
|
||||||
%files -n python3-%{srcname}
|
%files -n python3-%{srcname}
|
||||||
%license LICENSE licenses/DASK_LICENSE licenses/NUMPY_LICENSE licenses/PANDAS_LICENSE licenses/PYTHON_LICENSE licenses/SEABORN_LICENSE
|
%license LICENSE licenses/DASK_LICENSE licenses/NUMPY_LICENSE licenses/PANDAS_LICENSE licenses/PYTHON_LICENSE licenses/SEABORN_LICENSE
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{python3_sitelib}/%{srcname}
|
%{python3_sitelib}/%{srcname}
|
||||||
%{python3_sitelib}/%{srcname}-%{version}-py*.egg-info
|
%{python3_sitelib}/%{srcname}-%{version}-py?.?.egg-info
|
||||||
|
|
||||||
%if %{with docs}
|
|
||||||
%files -n python-%{srcname}-doc
|
|
||||||
%doc doc/_build/html
|
|
||||||
%license LICENSE licenses/DASK_LICENSE licenses/NUMPY_LICENSE licenses/PANDAS_LICENSE licenses/PYTHON_LICENSE licenses/SEABORN_LICENSE
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Dec 12 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.16.2-1
|
|
||||||
- Update to latest version (#1902888)
|
|
||||||
|
|
||||||
* Sat Sep 26 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.16.1-1
|
|
||||||
- Update to latest version (#1880864)
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jul 12 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.16.0-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Tue Jun 23 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.15.1-3
|
|
||||||
- Backport patch to fix tests catching too many warnings
|
|
||||||
|
|
||||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.15.1-3
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Sat Apr 18 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.15.1-2
|
|
||||||
- Fix broken install with missing files
|
|
||||||
- Test against installed version to catch above issue
|
|
||||||
- Add more test dependencies
|
|
||||||
|
|
||||||
* Wed Mar 25 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.15.1-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Fri Mar 06 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.15.0-2
|
|
||||||
- Backport fix for seaborn 0.10.0
|
|
||||||
|
|
||||||
* Sat Feb 08 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.15.0-1
|
|
||||||
- Update to latest version
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.3-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.12.3-3
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jul 21 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.12.3-1
|
* Sun Jul 21 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.12.3-1
|
||||||
- Update to latest version
|
- Update to latest version
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
SHA512 (xarray-0.16.2.tar.gz) = f6cd3eee2012e3b544874388c4824e911ce5d213cd393bf01b10deb9742a1168f41629e4f1e49220228771cac920980eaa98a599a6d62c383dd3da7b3bfe0dd8
|
SHA512 (xarray-0.12.3.tar.gz) = bac585362920f22b128ea75d5434ff1e9494cc4b8bafbb11533e80f3e09fe18e580e3e0dd9696bd906ac552ce5eb134e92019f6d2a7b1af0d38d27ac6589a846
|
||||||
SHA512 (xarray-data-5fdb22b5613ba8176b9f6fa67be783d7810643eb.tar.gz) = a1ed7c14e9fe6a0e4327b374b1b0ecd93472cd8308b3e2bbc078172576b8f31cd27c11da4b1c557e9b1615a411beaf21db83de755ece342343a4db2773ce6d29
|
SHA512 (xarray-data-870b5d7a9dbfa821423f1b88056890c22341f085.tar.gz) = 27de6e274d18d266d6d8a1f0c8f65396fff16d177cf6df41cfd4bcf839e6d083512c4f4dbc1163ab7380a8905acecfe15b7978e23b9c360bad2dd879addb421c
|
||||||
SHA512 (RGB.byte.tif) = 34aa1b196f6c5880530d42ec8a25193bc79db803a8427adc9b115373d222b9f4318a04f06c8b37118df7e09d96b9c470ecec543c604af18861f11b786ed6fbfd
|
SHA512 (RGB.byte.tif) = 34aa1b196f6c5880530d42ec8a25193bc79db803a8427adc9b115373d222b9f4318a04f06c8b37118df7e09d96b9c470ecec543c604af18861f11b786ed6fbfd
|
||||||
|
|||||||
Reference in New Issue
Block a user