Pyriod 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {pyriod-0.3.1 → pyriod-0.3.2}/PKG-INFO +1 -1
  2. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/Pyriod.py +1 -20
  3. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/PKG-INFO +1 -1
  4. {pyriod-0.3.1 → pyriod-0.3.2}/setup.py +1 -1
  5. {pyriod-0.3.1 → pyriod-0.3.2}/LICENSE +0 -0
  6. {pyriod-0.3.1 → pyriod-0.3.2}/MANIFEST.in +0 -0
  7. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/__init__.py +0 -0
  8. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/Periodogram.md +0 -0
  9. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/Signals.md +0 -0
  10. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/TimeSeries.md +0 -0
  11. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/pyquist.py +0 -0
  12. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/SOURCES.txt +0 -0
  13. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/dependency_links.txt +0 -0
  14. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/requires.txt +0 -0
  15. {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/top_level.txt +0 -0
  16. {pyriod-0.3.1 → pyriod-0.3.2}/README.md +0 -0
  17. {pyriod-0.3.1 → pyriod-0.3.2}/docs/examples.md +0 -0
  18. {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Log.png +0 -0
  19. {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Periodogram.png +0 -0
  20. {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Pyriod.png +0 -0
  21. {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Signals.png +0 -0
  22. {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/TimeSeries.png +0 -0
  23. {pyriod-0.3.1 → pyriod-0.3.2}/docs/index.md +0 -0
  24. {pyriod-0.3.1 → pyriod-0.3.2}/docs/tutorial.md +0 -0
  25. {pyriod-0.3.1 → pyriod-0.3.2}/examples/TESS_DBV_example.ipynb +0 -0
  26. {pyriod-0.3.1 → pyriod-0.3.2}/examples/TSC2_Demo.ipynb +0 -0
  27. {pyriod-0.3.1 → pyriod-0.3.2}/mkdocs.yml +0 -0
  28. {pyriod-0.3.1 → pyriod-0.3.2}/requirements.txt +0 -0
  29. {pyriod-0.3.1 → pyriod-0.3.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Pyriod
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Basic period detection and fitting routines for astronomical time series.
5
5
  Home-page: https://github.com/keatonb/Pyriod
6
6
  Author: Keaton Bell
@@ -2139,23 +2139,4 @@ class Pyriod(object):
2139
2139
  ax.set_ylim(0, 1)
2140
2140
  ax.set_xlabel(f"frequency ({self.freq_label})")
2141
2141
  ax.set_ylabel('spectral window')
2142
- return(ax)
2143
-
2144
-
2145
- data = np.loadtxt("/Users/keatonb/github/Pyriod/testing_dev/chimera_gr_combined_4nights.lc")
2146
- ofactor = 20
2147
- fnyq = 0.003
2148
- fres = 1./ np.ptp(data[:,0])
2149
- freq = np.arange(fres/ofactor, fnyq+fres/ofactor, fres/ofactor)
2150
- lc = lk.LightCurve(
2151
- time = data[:,0] / 86400,
2152
- flux = data[:,1],
2153
- flux_err = data[:,2]
2154
- )
2155
-
2156
- pyriod = Pyriod(
2157
- lc,
2158
- amp_unit='ppt',
2159
- freq_unit='muHz',
2160
- frequency=freq*1e6
2161
- )
2142
+ return(ax)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Pyriod
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: Basic period detection and fitting routines for astronomical time series.
5
5
  Home-page: https://github.com/keatonb/Pyriod
6
6
  Author: Keaton Bell
@@ -8,7 +8,7 @@ with open("requirements.txt", "r") as fh:
8
8
 
9
9
  setuptools.setup(
10
10
  name="Pyriod",
11
- version="0.3.1",
11
+ version="0.3.2",
12
12
  author="Keaton Bell",
13
13
  author_email="keatonbell@utexas.edu",
14
14
  description="Basic period detection and fitting routines for astronomical time series.",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes