Skip to content

Commit

Permalink
Add par_names is now a property attribute - PR 2027
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Sep 23, 2022
1 parent b469bee commit 9511042
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/release-notes/v0.7.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Important Notes
been updated.
To access the behavior used in ``pyhf`` ``v0.6.x`` use the ``suggested_fixed_as_bool`` attribute.
(PR :pr:`1639`)
* ``pyhf.pdf._ModelConfig.par_names`` is changed to be a property attribute.
(PR :pr:`2027`)
* The order of model parameters is now sorted by model parameter name.
(PR :pr:`1625`)
* Support for writing user custom modifiers is added.
Expand Down Expand Up @@ -114,6 +116,9 @@ Python API
To access the behavior used in ``pyhf`` ``v0.6.x`` use the ``suggested_fixed_as_bool`` attribute.
(PR :pr:`1639`)

* ``pyhf.pdf._ModelConfig.par_names`` is changed to be a property attribute.
(PR :pr:`2027`)

* The order of model parameters is now sorted by model parameter name.
(PR :pr:`1625`)

Expand All @@ -128,7 +133,7 @@ Python API
... )
>>> model.config.par_order
['correlated_bkg_uncertainty', 'mu']
>>> model.config.par_names()
>>> model.config.par_names
['correlated_bkg_uncertainty', 'mu']
* Support for writing user custom modifiers is added.
Expand Down

0 comments on commit 9511042

Please sign in to comment.