Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rodluger/everest
Browse files Browse the repository at this point in the history
  • Loading branch information
rodluger committed Jul 1, 2018
2 parents e583a5a + 539900b commit 56f61a3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
</p>

```diff
- NOTE: Version 2.0.9, which includes K2 campaigns 10--13, will be pip-installable shortly!
- Light curves are en route to MAST and should be available by 12/20/2017.
+ NOTE: Version 2.0.9, which includes K2 campaigns 10--13, is now pip-installable.
+ NOTE: Campaign 14 light curves should be available in the next couple weeks.
```

<div align="justify">
<b>E</b>PIC <b>V</b>ariability <b>E</b>xtraction and <b>R</b>emoval for <b>E</b>xoplanet <b>S</b>cience <b>T</b>argets: A pipeline for de-trending <b>K2</b> light curves with pixel level decorrelation and Gaussian processes. Here you'll find the Python code used to generate the <b>EVEREST</b> catalog, as well as tools for accessing and interacting with the de-trended light curves.

To install the latest <b>EVEREST</b> release (2.0.8):
To install the latest <b>EVEREST</b> release (**2.0.9**):
<br/>
<pre><code>pip install everest-pipeline</code></pre>
You can also install the current development version of <b>EVEREST</b> (2.0.9) from source:
You can also install the current development version of <b>EVEREST</b> (**2.0.9**) from source:
<br/>
<pre><code>git clone https://github.com/rodluger/everest
cd everest
Expand Down
11 changes: 9 additions & 2 deletions everest/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
from scipy.signal import savgol_filter
import numpy as np
np.random.seed(48151623)
from distutils.version import StrictVersion
from distutils.version import LooseVersion, StrictVersion
import george
from george.kernels import Matern32Kernel, ExpSine2Kernel
if StrictVersion(george.__version__) <= StrictVersion("0.2.1"):
try:
george_version = StrictVersion(george.__version__)
except ValueError:
george_version = LooseVersion(george.__version__)
comp_version = LooseVersion("0.3.0")
else:
comp_version = StrictVersion("0.3.0")
if george_version < comp_version:
from george.kernels import WhiteKernel
OLDGEORGE = True
else:
Expand Down

0 comments on commit 56f61a3

Please sign in to comment.