Skip to content

Commit

Permalink
Version 0.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
vrodgom committed Aug 4, 2023
1 parent 897202d commit baa0e19
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Vicente Rodriguez-Gomez'

# The full version, including alpha/beta/rc tags
release = '0.5.1'
release = '0.5.2'


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/notebooks/doublesersic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@
"\n",
"The fact that statmorph uses Astropy's modeling utility behind the scenes provides a great deal of flexibility. For example, if one is interested in fitting a de Vaucouleurs + exponential model (these components are, of course, special cases of the Sersic model with `n = 4` and `n = 1`, respectively), one simply has to add the following option when calling statmorph:\n",
"\n",
" doublesersic_model_args = {'n_1': 4, 'n_2': 1, 'fixed': {'n_1': True, 'n_2': True}}\n",
" doublesersic_model_args = {\n",
" 'n_1': 4, 'n_2': 1, 'fixed': {'n_1': True, 'n_2': True}}\n",
"\n",
"Furthermore, in some applications it might make sense to \"tie\" the ellipticity and position angle of the two Sersic components. This can also be accomplished using ``doublesersic_model_args`` in combination with the ``tied`` property of Astropy parameters, although the syntax is slightly more involved (more details [here](https://docs.astropy.org/en/stable/modeling/parameters.html)). Alternatively, statmorph provides the following option for this purpose, which achieves the same effect:\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='statmorph',
version='0.5.1',
version='0.5.2',
description='Non-parametric morphological diagnostics of galaxy images',
long_description=long_description,
url='https://github.com/vrodgom/statmorph',
Expand Down
2 changes: 1 addition & 1 deletion statmorph/statmorph.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'__version__',
]

__version__ = '0.5.1'
__version__ = '0.5.2'

# A list of the quantities calculated by SourceMorphology,
# excluding the double Sersic parameters:
Expand Down

0 comments on commit baa0e19

Please sign in to comment.