-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove hardcoded v0 * Update halo.py * fix references * make the example * update defaults * ah none defaults * remove messy compare * remove unused arg * pin numpy * fix syntax * Update pytest.yml * Update test_wimprates.py * Update test_wimprates.py --------- Co-authored-by: Joran Angevaare <[email protected]>
- Loading branch information
1 parent
e3aa729
commit e3c42bb
Showing
6 changed files
with
150 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
__version__ = '0.4.1' | ||
|
||
from packaging import version | ||
if version.parse('0.4.1') < version.parse(__version__) < version.parse('0.6.0'): | ||
# Remove this warning at some point | ||
import warnings | ||
warnings.warn( | ||
'Default WIMP parameters are changed in accordance with ' | ||
'https://arxiv.org/abs/2105.00599 (github.com/JelleAalbers/wimprates/pull/14)') | ||
|
||
from .utils import * | ||
from .halo import * | ||
from .elastic_nr import * | ||
from .bremsstrahlung import * | ||
from .migdal import * | ||
from .electron import * | ||
from .summary import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters