Skip to content

Commit

Permalink
Merge pull request #42 from chrishavlin/add_long_desc
Browse files Browse the repository at this point in the history
Set long description to readme content.
  • Loading branch information
chrishavlin authored Mar 13, 2023
2 parents f34a09c + 393cfd4 commit 26a2ace
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[run]
source = yt_xarray
omit =
setup.py

[report]
fail_under = 98
fail_under = 97
11 changes: 9 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# History

## 0.1.2 (2022-02-27)
## 0.1.3 (2023-03-10)

Bug fix release.

### Fixes:
* handle the case where data coordinate lengths are 1 (PR [41](https://github.com/data-exp-lab/yt_xarray/pull/41))

## 0.1.2 (2023-02-27)

Bug fix release.

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

## 0.1.1 (2022-02-07)
## 0.1.1 (2023-02-07)

This release builds out the loading functions introduced in v0.1.0 and includes
improvements to documentation
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = True

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
with open("requirements.txt") as reqs_file:
requirements = reqs_file.read().strip().split("\n")

with open("README.md", "r") as readme_file:
readme_md = readme_file.read()


test_requirements = [
"pytest>=3",
Expand All @@ -29,14 +32,15 @@
description="interface between yt and xarray",
install_requires=requirements,
license="MIT license",
long_description="tools for connecting yt and xarray",
long_description=readme_md,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="yt_xarray",
name="yt_xarray",
packages=find_packages(include=["yt_xarray", "yt_xarray.*"]),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/data-exp-lab/yt_xarray",
version="0.1.2",
version="0.1.3",
zip_safe=False,
)
2 changes: 1 addition & 1 deletion yt_xarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Chris Havlin"""
__email__ = "[email protected]"
__version__ = "0.1.2"
__version__ = "0.1.3"


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

0 comments on commit 26a2ace

Please sign in to comment.