Skip to content

Commit 6fc66fa

Browse files
authored
Release 0.1.3 (#11)
1 parent 3c1b918 commit 6fc66fa

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

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

3+
## 0.1.3 (2022-03-16)
4+
* Support `xarray` calver
5+
* Require Pillow > 9.0.1
6+
* Fix `geogif.__version__` (used to return the version of `stackstac`!)
7+
38
## 0.1.2 (2022-01-20)
49
Support 2022 versions of dask/distributed
510

geogif/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Note that this will be incorrect for local installs
55
import importlib.metadata
66

7-
__version__ = importlib.metadata.version("stackstac")
7+
__version__ = importlib.metadata.version("geogif")
88
del importlib
99

1010

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "geogif"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Render xarray timestacks into GIFs"
55
authors = ["Gabe Joseph <gjoseph92@gmail.com>"]
66
readme = "README.md"
@@ -13,7 +13,7 @@ dask = {extras = ["delayed"], version = ">= 2021.4.1, < 2023"}
1313
numpy = "^1.20.2"
1414
Pillow = "^9.0.1"
1515
matplotlib = "^3.4.1"
16-
xarray = ">=0.18,<1"
16+
xarray = ">=0.18"
1717
pytest = {version = "^6.2.3", optional = true}
1818
hypothesis = {version = "^6.10.1", optional = true}
1919
ipython = {version = "^7.23.0", optional = true}

0 commit comments

Comments
 (0)