Skip to content

Commit

Permalink
Release 0.4.1 (#145)
Browse files Browse the repository at this point in the history
Also update black and flake8 for fun. Seems to speed up poetry locks?
  • Loading branch information
gjoseph92 committed Apr 15, 2022
1 parent 100d682 commit b0e7b6e
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 30 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.1 (2022-04-15)
- Use `pd.Index` instead of deprecated `pd.Float64Index` [@TomAugspurger](https://github.com/TomAugspurger)
- Better error when forgetting a custom nodata value to `mosaic` [@gjoseph92](https://github.com/gjoseph92)

## 0.4.0 (2022-03-16)
- Support specifying a chunk pattern for the `time`/`band` dimensions, allowing you to load multiple items in one spatial chunk (like `stackstac.stack(..., chunksize=(-1, 1, 512, 512))`). This can moderately to significantly decrease memory usage and improve performance when creating composites (like `stack(..., chunksize=(-1, 1, "128MiB", "128MiB")).median("time")`). See [#116 (comment)](https://github.com/gjoseph92/stackstac/pull/116#issuecomment-1027606996) for details.
- `stackstac.mosaic` generates a more efficient dask graph, with hopefully lower memory usage [@gjoseph92](https://github.com/gjoseph92)
Expand Down
71 changes: 44 additions & 27 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
name = "stackstac"
readme = "README.md"
repository = "https://github.com/gjoseph92/stackstac"
version = "0.4.0"
version = "0.4.1"

[tool.poetry.dependencies]
Bottleneck = {version = "^1.3.2", optional = true}
Expand Down Expand Up @@ -42,9 +42,9 @@ sphinx-autodoc-typehints = {version = "^1.11.1", optional = true}
xarray = ">=0.18"

[tool.poetry.dev-dependencies]
black = "^21.4b2"
black = "^22.3.0"
dask-labextension = {version = "^5.0.1"}
flake8 = "^3.9.1"
flake8 = "^4.0.1"
graphviz = "^0.16"
hypothesis = "^6.35.0"
jupyterlab = "^3.0.14"
Expand Down

0 comments on commit b0e7b6e

Please sign in to comment.