-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfixes: - fixed the "FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated" issue in interpol.create_pixeltypegrid(). - updated the nonposx and nonposy keyword arguments in plt.set_xscale/plt.set_yscale to nonpositive to match the new versions of matplotlib. - The newest version of corner plot can't display more than 3 quantiles. So If no quantiles are set, we show the default 0.16, 0.5, 0.84 quantiles instead of [0.025, 0.16, 0.5, 0.84, 0.975]. Feature: - More work on batch fits: added support for constraints and code improvements. Not completely finished yet.
- Loading branch information
Joris Vos
committed
Apr 19, 2023
1 parent
19d4635
commit 38d0481
Showing
2 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
__version__ = "0.2.4" | ||
__title__ = "speedyfit" | ||
__description__ = "MC approach to fit photometric SEDs" | ||
__author__ = "Joris Vos" | ||
__email__ = "joris.vos@uv.cl" |