File tree Expand file tree Collapse file tree 5 files changed +20
-7
lines changed
Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 11[run]
22source = yt_xarray
3+ omit =
4+ setup.py
35
46[report]
5- fail_under = 98
7+ fail_under = 97
Original file line number Diff line number Diff line change 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
512Bug fix release.
613
@@ -9,7 +16,7 @@ Bug fix release.
916 order (e.g., latitude from 90 to -90) without
1017having 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
1421This release builds out the loading functions introduced in v0.1.0 and includes
1522improvements to documentation
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.1.2
2+ current_version = 0.1.3
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change 77with 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
1114test_requirements = [
1215 "pytest>=3" ,
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)
Original file line number Diff line number Diff line change 22
33__author__ = """Chris Havlin"""
445- __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
You can’t perform that action at this time.
0 commit comments