diff --git a/docs/releasenotes.rst b/docs/releasenotes.rst index aac70d1..16a6291 100644 --- a/docs/releasenotes.rst +++ b/docs/releasenotes.rst @@ -18,11 +18,11 @@ Note that users **must** upgrade to enable access to new *K2* campaigns. Updates to the source code -------------------------- -2.0.6 (coming soon) +2.0.7 (coming soon) ~~~~~~~~~~~~~~~~~~~ Updates the catalog with *K2* C9 and C10 light curves. -2.0.5 (02/19/2017) +2.0.6 (02/20/2017) ~~~~~~~~~~~~~~~~~~ Includes de-trended light curves from *K2* campaigns 0-8. This is the first public release of the :py:obj:`everest` 2.0 code and is described in detail diff --git a/docs/target_search.rst b/docs/target_search.rst index 2fe1a0a..09d121c 100644 --- a/docs/target_search.rst +++ b/docs/target_search.rst @@ -151,9 +151,9 @@ // Everest version if (campaign_int <= 8) - var requires = "EVEREST 2.0.5"; - else if (campaign_int == 10) var requires = "EVEREST 2.0.6"; + else if (campaign_int == 10) + var requires = "EVEREST 2.0.7"; else var requires = ""; diff --git a/everest/__init__.py b/everest/__init__.py index e1ba75f..c4c5a87 100644 --- a/everest/__init__.py +++ b/everest/__init__.py @@ -4,7 +4,7 @@ from __future__ import division, print_function, absolute_import, unicode_literals # Version number -__version__ = "2.0.5" +__version__ = "2.0.6" # Was everest imported from setup.py? try: diff --git a/everest/missions/k2/pipelines.py b/everest/missions/k2/pipelines.py index 1761db2..c9db925 100755 --- a/everest/missions/k2/pipelines.py +++ b/everest/missions/k2/pipelines.py @@ -46,14 +46,14 @@ def get(ID, pipeline = 'everest1'): time = s.time flux = s.fcor # Normalize to the median flux - s = k2plr.EVEREST(ID, version = 1) + s = k2plr.EVEREST(ID, version = 2) flux *= np.nanmedian(s.flux) elif pipeline.lower() == 'k2sc': s = k2plr.K2SC(ID) time = s.time flux = s.pdcflux elif pipeline.lower() == 'raw': - s = k2plr.EVEREST(ID, version = 1, raw = True) + s = k2plr.EVEREST(ID, version = 2, raw = True) time = s.time flux = s.flux else: diff --git a/setup.py b/setup.py index 323f987..72fa7a4 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ 'six', 'astropy', 'pysyzygy>=0.0.1', - 'k2plr>=0.2.4', + 'k2plr>=0.2.5', 'PyPDF2' ], scripts=['bin/everest', 'bin/everest-stats', 'bin/everest-status'],