Skip to content

Commit b0e7b6e

Browse files
authored
Release 0.4.1 (#145)
Also update black and flake8 for fun. Seems to speed up poetry locks?
1 parent 100d682 commit b0e7b6e

File tree

3 files changed

+51
-30
lines changed

3 files changed

+51
-30
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.4.1 (2022-04-15)
4+
- Use `pd.Index` instead of deprecated `pd.Float64Index` [@TomAugspurger](https://github.com/TomAugspurger)
5+
- Better error when forgetting a custom nodata value to `mosaic` [@gjoseph92](https://github.com/gjoseph92)
6+
37
## 0.4.0 (2022-03-16)
48
- 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.
59
- `stackstac.mosaic` generates a more efficient dask graph, with hopefully lower memory usage [@gjoseph92](https://github.com/gjoseph92)

poetry.lock

Lines changed: 44 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
name = "stackstac"
77
readme = "README.md"
88
repository = "https://github.com/gjoseph92/stackstac"
9-
version = "0.4.0"
9+
version = "0.4.1"
1010

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

4444
[tool.poetry.dev-dependencies]
45-
black = "^21.4b2"
45+
black = "^22.3.0"
4646
dask-labextension = {version = "^5.0.1"}
47-
flake8 = "^3.9.1"
47+
flake8 = "^4.0.1"
4848
graphviz = "^0.16"
4949
hypothesis = "^6.35.0"
5050
jupyterlab = "^3.0.14"

0 commit comments

Comments
 (0)