Skip to content

Commit 0ebccca

Browse files
authored
#169 Merge pull request from astropenguin/astropenguin/issue167
Release v1.3.0
2 parents 1bb4afa + 4b0c5ac commit 0ebccca

File tree

9 files changed

+61
-40
lines changed

9 files changed

+61
-40
lines changed

.zenodo.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

CITATION.ctf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
4+
title: "xarray-dataclasses"
5+
abstract: "xarray data creation made easy by dataclass"
6+
version: 1.3.0
7+
date-released: 2022-09-05
8+
license: "MIT"
9+
doi: "10.5281/zenodo.4624819"
10+
url: "https://github.com/astropenguin/xarray-dataclasses"
11+
authors:
12+
- given-names: "Akio"
13+
family-names: "Taniguchi"
14+
affiliation: "Nagoya University"
15+
orcid: "https://orcid.org/0000-0002-9695-6183"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Release](https://img.shields.io/pypi/v/xarray-dataclasses?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/xarray-dataclasses/)
44
[![Python](https://img.shields.io/pypi/pyversions/xarray-dataclasses?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/xarray-dataclasses/)
5-
![Downloads](https://img.shields.io/pypi/dm/xarray-dataclasses?label=Downloads&color=cornflowerblue&style=flat-square)
5+
[![Downloads](https://img.shields.io/pypi/dm/xarray-dataclasses?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/xarray-dataclasses)
66
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.4624819-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.4624819)
77
[![Tests](https://img.shields.io/github/workflow/status/astropenguin/xarray-dataclasses/Tests?label=Tests&style=flat-square)](https://github.com/astropenguin/xarray-dataclasses/actions)
88

docs/_static/logo-dark.svg

Lines changed: 11 additions & 0 deletions
Loading
File renamed without changes.

docs/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,18 @@
1919
"sphinx.ext.napoleon",
2020
"sphinx.ext.viewcode",
2121
]
22+
myst_heading_anchors = 3
2223
templates_path = ["_templates"]
2324

2425

2526
# options for HTML output
26-
html_logo = "_static/logo.svg"
2727
html_static_path = ["_static"]
2828
html_theme = "pydata_sphinx_theme"
2929
html_theme_options = {
30+
"logo": {
31+
"image_light": "logo-light.svg",
32+
"image_dark": "logo-dark.svg",
33+
},
3034
"github_url": "https://github.com/astropenguin/xarray-dataclasses/",
3135
"twitter_url": "https://twitter.com/astropengu_in/",
3236
}

poetry.lock

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

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "xarray-dataclasses"
3-
version = "1.2.0"
4-
description = "xarray extension for typed DataArray and Dataset creation"
3+
version = "1.3.0"
4+
description = "xarray data creation made easy by dataclass"
55
authors = ["Akio Taniguchi <[email protected]>"]
66
keywords = ["xarray", "dataclass", "dataarray", "dataset", "typing"]
77
license = "MIT"
@@ -23,16 +23,16 @@ xarray = [
2323
]
2424

2525
[tool.poetry.group.dev.dependencies]
26-
black = "^22.3"
26+
black = "^22.8"
2727
ipython = [
2828
{ version = "^7.32", python = ">=3.7.1, <3.8" },
2929
{ version = "^8.4", python = ">=3.8, <3.11" },
3030
]
31-
myst-parser = "^0.17"
32-
pydata-sphinx-theme = "^0.8"
31+
myst-parser = "^0.18"
32+
pydata-sphinx-theme = "^0.9"
3333
pyright = "^1.1"
3434
pytest = "^7.1"
35-
sphinx = "^4.5"
35+
sphinx = "^5.1"
3636

3737
[tool.pyright]
3838
reportImportCycles = "warning"

xarray_dataclasses/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# type: ignore
2-
__version__ = "1.2.0"
2+
__version__ = "1.3.0"
33

44

55
# submodules

0 commit comments

Comments
 (0)