Releases: astropenguin/ndradex
Releases · astropenguin/ndradex
v0.3.1 (2023-05-19)
v0.3.0 (2023-05-19)
What's Changed
- Support Python 3.8-3.11 by @astropenguin in #41
- Build RADEX at the first import instead of on the build by @astropenguin in #42
- Add consts module by @astropenguin in #43
- Update utils module by @astropenguin in #45
- Update radex module by @astropenguin in #46
- Fix LAMDA property for calculating critical densities by @astropenguin in #48
- Release v0.3.0 by @astropenguin in #50
Full Changelog: v0.2.2...v0.3.0
Bug-fix release
Update release
This version has a critical bug (#17). Please use v0.2.0 until the next version (v0.2.2) is released.
This release closes the following issues. Since they are for refactoring, no additional, updated, or removed features are included in this release.
Update release
- Make use the fullname of a datafile (e.g.,
'co.dat'
) as a query in thendradex.run()
function- user can still use a query without extension (e.g.,
'co'
), but it will be deprecated in the future
- user can still use a query without extension (e.g.,
- Default user config (
~/.config/ndradex/config.toml
) is now empty- this means that default parameter values of the
ndradex.run()
function is exactly used
- this means that default parameter values of the
Bug fix release
- Fix #4 by specifying required versions of dependent Python packages in
setup.cfg
Update release
- Add
work_dir
option tondradex.run()
function- user can specify the path of directory under which a temporary directory for intermediate files is created (automatically deleted after the function is finished)
- Update the method of QN string formatting
- List of available LAMDA datafiles and transitions is also updated for some molecules
- Update README
- Some refactoring in the LAMDA class
Update release
- Change the number of maximum iterations in RADEX (9999 → 999999)
Bug-fix and update release
- Fix the wrong behavior of
timeout
option- in v0.1.5,
timeout
is used for the entire calculation - now
timeout
is correctly used for a single RADEX calculation
- in v0.1.5,
- Rename progress bar option (
bar
→progress
) - Update the behavior of progress bar when keyboard interruption
Update release
- Add an option for toggling progress bar to
ndradex.grid.run()
function- you can now disable to show the bar using
bar=False
- you can now disable to show the bar using