diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-12-13 20:34:28 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-12-13 20:34:28 +0800 |
commit | 30487211beca87da37a00a4c89e438c42dabe6f6 (patch) | |
tree | 050240b5a21ff0040bfffdba7bef2b6d6fe93880 | |
parent | 9511eb8b2a0e3c3f65473a735700c65ec697d58d (diff) | |
download | fg21sim-30487211beca87da37a00a4c89e438c42dabe6f6.tar.bz2 |
Bump to version 0.4.1 with important bug fixesv0.4.1
* Fix two serious bug in "utils/draw.py", which causes the generated
ellipses are wrong (like rectangles), and thus leads to wrong
simulation shapes for SNRs, clusters, etc.
* Also clean up "utils/draw.py" by merging the "_ellipse_in_shape()"
function into "ellipse()".
* Update "galactic/snr.py" to use the JIT-optimized "Fnu_to_Tb_fast()"
function.
* Other small changes/updates.
-rw-r--r-- | fg21sim/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/__init__.py b/fg21sim/__init__.py index f4d45b4..059fd44 100644 --- a/fg21sim/__init__.py +++ b/fg21sim/__init__.py @@ -7,7 +7,7 @@ Realistic Foregrounds Simulation for EoR 21cm Signal Detection """ __pkgname__ = "fg21sim" -__version__ = "0.4.0" +__version__ = "0.4.1" __author__ = "Weitian LI" __author_email__ = "liweitianux@live.com" __license__ = "MIT" |