Skip to content

Commit 20bafa2

Browse files
authored
#52 Merge pull request from astropenguin/astropenguin/issue51
Fix pyproject.toml
2 parents b3ff1ca + f2c6c37 commit 20bafa2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below."
33

44
title: "ndradex"
55
abstract: "Multidimensional grid RADEX calculator"
6-
version: 0.3.0
6+
version: 0.3.1
77
date-released: 2023-05-19
88
license: "MIT"
99
doi: "10.5281/zenodo.3384031"

ndradex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"save_dataset",
1010
"load_dataset",
1111
]
12-
__version__ = "0.3.0"
12+
__version__ = "0.3.1"
1313
__author__ = "Akio Taniguchi"
1414

1515

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[tool.poetry]
22
name = "ndradex"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = " Multidimensional grid RADEX calculator"
55
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
66
keywords = ["astronomy", "radio-astronomy", "radex", "xarray"]
77
license = "MIT"
8+
readme = "README.md"
89
homepage = "https://github.com/astropenguin/ndradex/"
910
documentation = "https://astropenguin.github.io/ndradex/"
1011

1112
[tool.poetry.dependencies]
12-
python = ">3.8, <3.12"
13+
python = ">=3.8, <3.12"
1314
astropy = "^5.0"
1415
astroquery = "^0.4"
1516
netcdf4 = "^1.6"

tests/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# test functions
66
def test_version():
77
"""Make sure the version is valid."""
8-
assert ndradex.__version__ == "0.3.0"
8+
assert ndradex.__version__ == "0.3.1"
99

1010

1111
def test_author():

0 commit comments

Comments
 (0)