Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dlakaplan committed Oct 17, 2023
2 parents 973987f + 0201737 commit 12fefec
Show file tree
Hide file tree
Showing 9 changed files with 1,104 additions and 433 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
5 changes: 5 additions & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ 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
- CHI2, CHI2R, TRES, DMRES now in postfit par files
- Added `WaveX` model as a `DelayComponent` with Fourier amplitudes as fitted parameters
Expand All @@ -21,6 +24,7 @@ the released changes.
- Support for wideband data in `pint.bayesian` (no correlated noise).
- Added `DMWaveX` model (Fourier representation of DM noise)
- Piecewise orbital model (`BinaryBTPiecewise`)
- `TimingModel.fittable_params` property
- Simulate correlated noise using `pint.simulation` (also available via the `zima` script)
### Fixed
- Wave model `validate()` can correctly use PEPOCH to assign WAVEEPOCH parameter
Expand All @@ -31,4 +35,5 @@ the released changes.
- Fix ICRS -> ECL conversion when parameter uncertainties are not set.
- `get_TOAs` raises an exception upon finding mixed narrowband and wideband TOAs in a tim file. `TOAs.is_wideband` returns True only if *ALL* TOAs have the -pp_dm flag.
- `make_fake_toas_uniform` respects units of errors
- `TimingModel.designmatrix()` method will fail with an informative error message if there are free unfittable parameters in the timing model.
### Removed
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 12fefec

Please sign in to comment.