-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[xarray-beam] fix docs & bug in make_template
Reusing dask.array names for arrays with different shapes was the indirect cause of the error on our docs pages. I've also updated the build dependencies for our docs to fix other build issues, and added a Python 3.11 run of our unit tests. Fixes #76 PiperOrigin-RevId: 536022594
- Loading branch information
Showing
7 changed files
with
35 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.10"] | ||
python-version: ["3.9", "3.10", "3.11"] | ||
steps: | ||
- name: Cancel previous | ||
uses: styfle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# doc requirements | ||
Jinja2==3.1.2 | ||
myst-nb==0.17.1 | ||
myst-nb==0.17.2 | ||
myst-parser==0.18.1 | ||
sphinx_rtd_theme==1.1.1 | ||
sphinx_rtd_theme==1.2.1 | ||
sphinx==5.3.0 | ||
scipy==1.10.0 | ||
scipy==1.10.1 | ||
|
||
# xarray-beam requirements | ||
apache-beam==2.44.0 | ||
dask==2023.1.0 | ||
immutabledict==2.2.3 | ||
numpy==1.22.4 | ||
apache-beam==2.47.0 | ||
dask==2023.5.1 | ||
immutabledict==2.2.4 | ||
numpy==1.24.3 | ||
pandas==1.5.3 | ||
pooch==1.6.0 | ||
rechunker==0.5.0 | ||
xarray==2023.1.0 | ||
zarr==2.13.6 | ||
pooch==1.7.0 | ||
rechunker==0.5.1 | ||
xarray==2023.5.0 | ||
zarr==2.14.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
|
||
setuptools.setup( | ||
name='xarray-beam', | ||
version='0.6.0', | ||
version='0.6.1', | ||
license='Apache 2.0', | ||
author='Google LLC', | ||
author_email='[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,4 +45,4 @@ | |
DatasetToZarr, | ||
) | ||
|
||
__version__ = '0.6.0' | ||
__version__ = '0.6.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters