Skip to content

Commit

Permalink
Merge branch 'master' into fasterastrom
Browse files Browse the repository at this point in the history
  • Loading branch information
dlakaplan authored Oct 13, 2023
2 parents 7b3cb57 + 9e21a05 commit 6418809
Show file tree
Hide file tree
Showing 16 changed files with 2,812 additions and 440 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
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Active developers are indicated by (*). Authors of the PINT paper are indicated
* Sasha Levina
* Nikhil Mahajan
* Alex McEwen
* Patrick O'Neill
* Patrick O'Neill (*)
* Tim Pennucci
* Camryn Phillips (#)
* Matt Pitkin
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ the released changes.
- Made `Residuals` independent of `GLSFitter` (GLS chi2 is now computed using the new function `Residuals._calc_gls_chi2()`).
- `ssb_to_psb_ICRS` implementation is now a lot faster (uses erfa functions directly)
- `ssb_to_psb_ECL` implementation within `AstrometryEcliptic` model is now a lot faster (uses erfa functions directly)
- Upgraded versioneer for compatibility with Python 3.12
### Added
- CHI2, CHI2R, TRES, DMRES now in postfit par files
- Added `WaveX` model as a `DelayComponent` with Fourier amplitudes as fitted parameters
Expand All @@ -22,6 +23,8 @@ the released changes.
- Added radial velocity methods for binary models
- Support for wideband data in `pint.bayesian` (no correlated noise).
- Added `DMWaveX` model (Fourier representation of DM noise)
- Piecewise orbital model (`BinaryBTPiecewise`)
- Simulate correlated noise using `pint.simulation` (also available via the `zima` script)
### Fixed
- Wave model `validate()` can correctly use PEPOCH to assign WAVEEPOCH parameter
- Fixed RTD by specifying theme explicitly.
Expand Down
2 changes: 1 addition & 1 deletion src/pint/data/examples/B1855+09_NANOGrav_9yv1.gls.par
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ FD3 1.07526915D-04 1 2.50177766D-05
SOLARN0 0.00
EPHEM DE421
ECL IERS2003
CLK TT(BIPM)
CLK TT(BIPM2019)
UNITS TDB
TIMEEPH FB90
#T2CMETHOD TEMPO
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 6418809

Please sign in to comment.