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 1
1
[run]
2
2
source = yt_xarray
3
+ omit =
4
+ setup.py
3
5
4
6
[report]
5
- fail_under = 98
7
+ fail_under = 97
Original file line number Diff line number Diff line change 1
1
# History
2
2
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)
4
11
5
12
Bug fix release.
6
13
@@ -9,7 +16,7 @@ Bug fix release.
9
16
order (e.g., latitude from 90 to -90) without
10
17
having to re-index the whole variable (PR [ 39] ( https://github.com/data-exp-lab/yt_xarray/pull/39 ) ).
11
18
12
- ## 0.1.1 (2022 -02-07)
19
+ ## 0.1.1 (2023 -02-07)
13
20
14
21
This release builds out the loading functions introduced in v0.1.0 and includes
15
22
improvements to documentation
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.1.2
2
+ current_version = 0.1.3
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 7
7
with open ("requirements.txt" ) as reqs_file :
8
8
requirements = reqs_file .read ().strip ().split ("\n " )
9
9
10
+ with open ("README.md" , "r" ) as readme_file :
11
+ readme_md = readme_file .read ()
12
+
10
13
11
14
test_requirements = [
12
15
"pytest>=3" ,
29
32
description = "interface between yt and xarray" ,
30
33
install_requires = requirements ,
31
34
license = "MIT license" ,
32
- long_description = "tools for connecting yt and xarray" ,
35
+ long_description = readme_md ,
36
+ long_description_content_type = "text/markdown" ,
33
37
include_package_data = True ,
34
38
keywords = "yt_xarray" ,
35
39
name = "yt_xarray" ,
36
40
packages = find_packages (include = ["yt_xarray" , "yt_xarray.*" ]),
37
41
test_suite = "tests" ,
38
42
tests_require = test_requirements ,
39
43
url = "https://github.com/data-exp-lab/yt_xarray" ,
40
- version = "0.1.2 " ,
44
+ version = "0.1.3 " ,
41
45
zip_safe = False ,
42
46
)
Original file line number Diff line number Diff line change 2
2
3
3
__author__ = """Chris Havlin"""
4
4
__email__ = "chris.havlin@gmail.com"
5
- __version__ = "0.1.2 "
5
+ __version__ = "0.1.3 "
6
6
7
7
8
8
# 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