Skip to content

Commit

Permalink
Update CHANGELOG and fix test_precision.py
Browse files Browse the repository at this point in the history
  • Loading branch information
paulray committed Nov 30, 2022
1 parent fbf96c6 commit 962674d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project, at least loosely, adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.9.2] 2022-11-30
### Changed
- Minimum supported versions updated to numpy 1.18.5, matplotlib 3.2.0
- `introduces_correlated_errors` is now a class attribute of `NoiseComponent`s
Expand All @@ -22,6 +22,7 @@ and this project, at least loosely, adheres to [Semantic Versioning](https://sem
- New tests to improve test coverage
- Documentation: Instructions to checkout development branch
- Clock file for effix
- Added energy dependent templates to the lctemplates utilities and added tests
### Fixed
- global clock files now emit a warning instead of an exception if expired and the download fails
- dmxparse outputs to dmxparse.out if save=True
Expand All @@ -32,6 +33,7 @@ and this project, at least loosely, adheres to [Semantic Versioning](https://sem
- Fixed bug in photonphase with polycos
- Made clock file loading log entries a little friendlier
- Typo fixes in documentation
- Fixed failing HealthCheck in tests/test_precision.py
### Removed
- Removed obsolete `ltinterface` module
- Removed old and WIP functions from `gridutils` module
Expand Down
3 changes: 2 additions & 1 deletion tests/test_precision.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import pytest
from astropy.tests.helper import assert_quantity_allclose
from astropy.time import Time
from hypothesis import assume, example, given
from hypothesis import assume, example, given, settings, HealthCheck
from hypothesis.strategies import (
booleans,
composite,
Expand Down Expand Up @@ -605,6 +605,7 @@ def test_pulsar_mjd_proceeds_at_normal_rate_on_leap_second_days(i_f):


@given(leap_sec_day_mjd())
@settings(suppress_health_check=[HealthCheck.filter_too_much])
def test_mjd_proceeds_slower_on_leap_second_days(i_f):
i, f = i_f
assume(0.2 < f < 1)
Expand Down

0 comments on commit 962674d

Please sign in to comment.