Skip to content

Commit 3a1d9ab

Browse files
committed
add long desc, bump version and history
1 parent a790c62 commit 3a1d9ab

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

HISTORY.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# History
22

3-
## 0.1.2 (2022-02-27)
3+
## 0.1.3 (2023-03-10)
4+
5+
Bug fix release.
6+
7+
### Fixes:
8+
* handle the case where data coordinate lengths are 1 (PR [41](https://github.com/data-exp-lab/yt_xarray/pull/41))
9+
10+
## 0.1.2 (2023-02-27)
411

512
Bug fix release.
613

@@ -9,7 +16,7 @@ Bug fix release.
916
order (e.g., latitude from 90 to -90) without
1017
having to re-index the whole variable (PR [39](https://github.com/data-exp-lab/yt_xarray/pull/39)).
1118

12-
## 0.1.1 (2022-02-07)
19+
## 0.1.1 (2023-02-07)
1320

1421
This release builds out the loading functions introduced in v0.1.0 and includes
1522
improvements to documentation

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
33
commit = True
44
tag = True
55

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
with open("requirements.txt") as reqs_file:
88
requirements = reqs_file.read().strip().split("\n")
99

10+
with open("README.md", "r") as readme_file:
11+
readme_md = readme_file.read()
12+
1013

1114
test_requirements = [
1215
"pytest>=3",
@@ -29,14 +32,14 @@
2932
description="interface between yt and xarray",
3033
install_requires=requirements,
3134
license="MIT license",
32-
long_description="tools for connecting yt and xarray",
35+
long_description=readme_md,
3336
include_package_data=True,
3437
keywords="yt_xarray",
3538
name="yt_xarray",
3639
packages=find_packages(include=["yt_xarray", "yt_xarray.*"]),
3740
test_suite="tests",
3841
tests_require=test_requirements,
3942
url="https://github.com/data-exp-lab/yt_xarray",
40-
version="0.1.2",
43+
version="0.1.3",
4144
zip_safe=False,
4245
)

yt_xarray/__init__.py

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

33
__author__ = """Chris Havlin"""
44
__email__ = "[email protected]"
5-
__version__ = "0.1.2"
5+
__version__ = "0.1.3"
66

77

88
# import the yt frontend and the xarray accessor so they are registered with

0 commit comments

Comments
 (0)