Skip to content

Commit 26a2ace

Browse files
authored
Merge pull request #42 from chrishavlin/add_long_desc
Set long description to readme content.
2 parents f34a09c + 393cfd4 commit 26a2ace

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

.coveragerc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[run]
22
source = yt_xarray
3+
omit =
4+
setup.py
35

46
[report]
5-
fail_under = 98
7+
fail_under = 97

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: 6 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,15 @@
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,
36+
long_description_content_type="text/markdown",
3337
include_package_data=True,
3438
keywords="yt_xarray",
3539
name="yt_xarray",
3640
packages=find_packages(include=["yt_xarray", "yt_xarray.*"]),
3741
test_suite="tests",
3842
tests_require=test_requirements,
3943
url="https://github.com/data-exp-lab/yt_xarray",
40-
version="0.1.2",
44+
version="0.1.3",
4145
zip_safe=False,
4246
)

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__ = "chris.havlin@gmail.com"
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)