Skip to content

Commit

Permalink
Merge branch 'master' into fittable-params
Browse files Browse the repository at this point in the history
  • Loading branch information
abhisrkckl authored Oct 13, 2023
2 parents a5e2edc + 9e21a05 commit fb14307
Show file tree
Hide file tree
Showing 5 changed files with 1,036 additions and 421 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pint/extern/_version.py export-subst
src/pint/extern/_version.py export-subst
1 change: 1 addition & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ the released changes.
- `WAVE` parameters can be added to a `Wave` model with `add_wave_component()` in `wave.py`
- Moved design matrix normalization code from `pint.fitter` to the new `pint.utils.normalize_designmatrix()` function.
- Made `Residuals` independent of `GLSFitter` (GLS chi2 is now computed using the new function `Residuals._calc_gls_chi2()`).
- Upgraded versioneer for compatibility with Python 3.12
- Creation of `Fitter` objects will fail if there are free unfittable parameters in the timing model.
- Only fittable parameters will be listed as check boxes in the `plk` interface.
### Added
Expand Down
4 changes: 4 additions & 0 deletions src/pint/extern/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# __init__.py for pint/extern
"""External/third-party modules that are distributed with PINT."""

from . import _version

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit fb14307

Please sign in to comment.