Skip to content

Commit 9511042

Browse files
Add par_names is now a property attribute - PR 2027
1 parent b469bee commit 9511042

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/release-notes/v0.7.0.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ Important Notes
2424
been updated.
2525
To access the behavior used in ``pyhf`` ``v0.6.x`` use the ``suggested_fixed_as_bool`` attribute.
2626
(PR :pr:`1639`)
27+
* ``pyhf.pdf._ModelConfig.par_names`` is changed to be a property attribute.
28+
(PR :pr:`2027`)
2729
* The order of model parameters is now sorted by model parameter name.
2830
(PR :pr:`1625`)
2931
* Support for writing user custom modifiers is added.
@@ -114,6 +116,9 @@ Python API
114116
To access the behavior used in ``pyhf`` ``v0.6.x`` use the ``suggested_fixed_as_bool`` attribute.
115117
(PR :pr:`1639`)
116118

119+
* ``pyhf.pdf._ModelConfig.par_names`` is changed to be a property attribute.
120+
(PR :pr:`2027`)
121+
117122
* The order of model parameters is now sorted by model parameter name.
118123
(PR :pr:`1625`)
119124

@@ -128,7 +133,7 @@ Python API
128133
... )
129134
>>> model.config.par_order
130135
['correlated_bkg_uncertainty', 'mu']
131-
>>> model.config.par_names()
136+
>>> model.config.par_names
132137
['correlated_bkg_uncertainty', 'mu']
133138
134139
* Support for writing user custom modifiers is added.

0 commit comments

Comments
 (0)