gwpy 3.0.8__py3-none-any.whl → 3.0.10__py3-none-any.whl

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.

Potentially problematic release.


This version of gwpy might be problematic. Click here for more details.

Files changed (47) hide show
  1. gwpy/_version.py +2 -2
  2. gwpy/astro/range.py +3 -3
  3. gwpy/astro/tests/test_range.py +4 -5
  4. gwpy/cli/gwpy_plot.py +1 -1
  5. gwpy/cli/qtransform.py +1 -1
  6. gwpy/cli/tests/base.py +11 -1
  7. gwpy/detector/units.py +2 -1
  8. gwpy/frequencyseries/tests/test_hist.py +4 -3
  9. gwpy/io/datafind.py +1 -0
  10. gwpy/io/ffldatafind.py +27 -16
  11. gwpy/io/tests/test_ffldatafind.py +10 -3
  12. gwpy/plot/plot.py +12 -2
  13. gwpy/plot/tests/test_segments.py +1 -1
  14. gwpy/plot/tex.py +6 -4
  15. gwpy/segments/flag.py +13 -11
  16. gwpy/signal/filter_design.py +5 -4
  17. gwpy/signal/tests/test_coherence.py +31 -10
  18. gwpy/signal/tests/test_filter_design.py +3 -3
  19. gwpy/spectrogram/tests/test_spectrogram.py +2 -2
  20. gwpy/table/io/ligolw.py +1 -1
  21. gwpy/table/tests/test_io_ligolw.py +1 -1
  22. gwpy/testing/errors.py +1 -0
  23. gwpy/testing/fixtures.py +1 -18
  24. gwpy/testing/utils.py +15 -6
  25. gwpy/timeseries/core.py +0 -1
  26. gwpy/timeseries/io/cache.py +47 -29
  27. gwpy/timeseries/io/gwf/lalframe.py +8 -0
  28. gwpy/timeseries/statevector.py +4 -2
  29. gwpy/timeseries/tests/test_core.py +7 -13
  30. gwpy/timeseries/tests/test_io_cache.py +74 -0
  31. gwpy/timeseries/tests/test_io_gwf_framecpp.py +1 -1
  32. gwpy/timeseries/tests/test_statevector.py +29 -17
  33. gwpy/timeseries/tests/test_timeseries.py +37 -34
  34. gwpy/types/array.py +16 -3
  35. gwpy/types/index.py +7 -5
  36. gwpy/types/tests/test_array.py +12 -10
  37. gwpy/types/tests/test_array2d.py +5 -9
  38. gwpy/types/tests/test_series.py +5 -5
  39. gwpy/utils/sphinx/zenodo.py +5 -1
  40. gwpy/utils/tests/test_sphinx_zenodo.py +23 -0
  41. gwpy-3.0.10.dist-info/METADATA +125 -0
  42. {gwpy-3.0.8.dist-info → gwpy-3.0.10.dist-info}/RECORD +46 -45
  43. {gwpy-3.0.8.dist-info → gwpy-3.0.10.dist-info}/WHEEL +1 -1
  44. gwpy-3.0.8.dist-info/METADATA +0 -124
  45. {gwpy-3.0.8.dist-info → gwpy-3.0.10.dist-info}/LICENSE +0 -0
  46. {gwpy-3.0.8.dist-info → gwpy-3.0.10.dist-info}/entry_points.txt +0 -0
  47. {gwpy-3.0.8.dist-info → gwpy-3.0.10.dist-info}/top_level.txt +0 -0
@@ -36,11 +36,10 @@ from .test_array import TestArray as _TestArray
36
36
  class TestSeries(_TestArray):
37
37
  TEST_CLASS = Series
38
38
 
39
- def test_new(self):
40
- array = super().test_new()
39
+ def assert_new(self, array):
40
+ super().assert_new(array)
41
41
  assert array.x0 == units.Quantity(0, self.TEST_CLASS._default_xunit)
42
42
  assert array.dx == units.Quantity(1, self.TEST_CLASS._default_xunit)
43
- return array
44
43
 
45
44
  # -- test properties ------------------------
46
45
 
@@ -168,7 +167,7 @@ class TestSeries(_TestArray):
168
167
 
169
168
  When subsetting a Series with an iterable of integer indices,
170
169
  make sure that the xindex, if it exists, is also subsetted. Tests
171
- regression against https://github.com/gwpy/gwpy/issues/1680.
170
+ regression against https://gitlab.com/gwpy/gwpy/-/issues/1680.
172
171
  """
173
172
  array.xindex # create xindex
174
173
  indices = numpy.array([0, 1, len(array)-1])
@@ -250,7 +249,8 @@ class TestSeries(_TestArray):
250
249
  def test_crop_float_precision(self):
251
250
  """Verify the float precision of the crop function.
252
251
 
253
- This tests regression against https://github.com/gwpy/gwpy/issues/1601.
252
+ This tests against regression of
253
+ https://gitlab.com/gwpy/gwpy/-/issues/1601.
254
254
  """
255
255
  # construct empty data array with the right shape for this array object
256
256
  shape = (101,) * self.TEST_CLASS._ndim
@@ -62,7 +62,11 @@ def format_citations(
62
62
  "page": 1,
63
63
  "size": int(hits),
64
64
  }
65
- resp = requests.get(apiurl, params) # make the request
65
+ resp = requests.get( # make the request
66
+ apiurl,
67
+ params=params,
68
+ timeout=30,
69
+ )
66
70
  resp.raise_for_status() # make sure it worked
67
71
  records = resp.json() # parse the response
68
72
 
@@ -19,6 +19,8 @@
19
19
  """Tests for :mod:`gwpy.utils.sphinx.zenodo`.
20
20
  """
21
21
 
22
+ from functools import wraps
23
+
22
24
  import pytest
23
25
 
24
26
  import requests
@@ -83,8 +85,28 @@ MOCK_ZENODO_API_RST = """
83
85
  """.strip()
84
86
 
85
87
 
88
+ def pytest_skip_zenodo_http_errors(func):
89
+ """Execute `func` but skip if it raises a known server-side error.
90
+ """
91
+ @wraps(func)
92
+ def wrapper(*args, **kwargs):
93
+ try:
94
+ return func(*args, **kwargs)
95
+ except requests.HTTPError as exc: # pragma: no cover
96
+ if (
97
+ # API rate limit
98
+ str(exc).startswith("403 Client Error: rate limit exceeded")
99
+ # Bad Gateway
100
+ or exc.response.status_code == 502
101
+ ):
102
+ pytest.skip(str(exc))
103
+ raise
104
+ return wrapper
105
+
106
+
86
107
  @pytest.fixture
87
108
  @pytest_skip_network_error
109
+ @pytest_skip_zenodo_http_errors
88
110
  def latest():
89
111
  """Get the latest release of GWpy from the GitHub API.
90
112
  """
@@ -97,6 +119,7 @@ def latest():
97
119
 
98
120
 
99
121
  @pytest_skip_network_error
122
+ @pytest_skip_zenodo_http_errors
100
123
  def test_zenodo_format_citations_latest(latest):
101
124
  """Check that :func:`gwpy.utils.sphinx.zenodo.format_citations` includes
102
125
  the latest actual release in the output.
@@ -0,0 +1,125 @@
1
+ Metadata-Version: 2.1
2
+ Name: gwpy
3
+ Version: 3.0.10
4
+ Summary: A python package for gravitational-wave astrophysics
5
+ Author-email: Duncan Macleod <duncan.macleod@ligo.org>
6
+ License: GPL-3.0-or-later
7
+ Project-URL: Bug Tracker, https://gitlab.com/gwpy/gwpy/-/issues
8
+ Project-URL: Discussion Forum, https://gwpy.slack.com
9
+ Project-URL: Documentation, https://gwpy.github.io/docs/
10
+ Project-URL: Source Code, https://gitlab.com/gwpy/gwpy
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: Natural Language :: English
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
24
+ Classifier: Topic :: Scientific/Engineering :: Physics
25
+ Requires-Python: >=3.8
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: astropy>=4.3.0
29
+ Requires-Dist: dateparser>=1.1.4
30
+ Requires-Dist: dqsegdb2
31
+ Requires-Dist: gwdatafind>=1.1.0
32
+ Requires-Dist: gwosc>=0.5.3
33
+ Requires-Dist: h5py>=3.0.0
34
+ Requires-Dist: ligo-segments>=1.0.0
35
+ Requires-Dist: ligotimegps>=1.2.1
36
+ Requires-Dist: matplotlib>=3.3.0
37
+ Requires-Dist: numpy>=1.19
38
+ Requires-Dist: python-dateutil
39
+ Requires-Dist: requests>=2.20.0
40
+ Requires-Dist: scipy>=1.6.0
41
+ Requires-Dist: tqdm>=4.10.0
42
+ Provides-Extra: astro
43
+ Requires-Dist: inspiral-range>=0.5.0; extra == "astro"
44
+ Provides-Extra: conda
45
+ Requires-Dist: python-framel!=8.46.0,>=8.40.1; extra == "conda"
46
+ Requires-Dist: python-nds2-client; extra == "conda"
47
+ Requires-Dist: python-ldas-tools-framecpp; sys_platform != "win32" and extra == "conda"
48
+ Requires-Dist: lxml!=4.9.1; sys_platform == "win32" and extra == "conda"
49
+ Provides-Extra: dev
50
+ Requires-Dist: ciecplib; extra == "dev"
51
+ Requires-Dist: inspiral-range>=0.5.0; extra == "dev"
52
+ Requires-Dist: pymysql; extra == "dev"
53
+ Requires-Dist: sqlalchemy; extra == "dev"
54
+ Requires-Dist: uproot>=4.1.5; extra == "dev"
55
+ Requires-Dist: lalsuite; sys_platform != "win32" and extra == "dev"
56
+ Requires-Dist: lscsoft-glue; sys_platform != "win32" and extra == "dev"
57
+ Requires-Dist: pycbc>=1.13.4; sys_platform != "win32" and extra == "dev"
58
+ Requires-Dist: python-ligo-lw>=1.7.0; sys_platform != "win32" and extra == "dev"
59
+ Requires-Dist: psycopg2; sys_platform == "linux" and extra == "dev"
60
+ Provides-Extra: docs
61
+ Requires-Dist: numpydoc>=0.8.0; extra == "docs"
62
+ Requires-Dist: Sphinx>=4.4.0; extra == "docs"
63
+ Requires-Dist: sphinx-automodapi; extra == "docs"
64
+ Requires-Dist: sphinx-immaterial>=0.7.3; extra == "docs"
65
+ Requires-Dist: sphinxcontrib-programoutput; extra == "docs"
66
+ Provides-Extra: test
67
+ Requires-Dist: coverage[toml]>=5.0; extra == "test"
68
+ Requires-Dist: pytest>=3.9.1; extra == "test"
69
+ Requires-Dist: pytest-freezer; extra == "test"
70
+ Requires-Dist: pytest-cov>=2.4.0; extra == "test"
71
+ Requires-Dist: pytest-requires; extra == "test"
72
+ Requires-Dist: pytest-socket; extra == "test"
73
+ Requires-Dist: pytest-xdist; extra == "test"
74
+ Requires-Dist: requests-mock; extra == "test"
75
+
76
+ GWpy is a collaboration-driven Python package providing tools for
77
+ studying data from ground-based gravitational-wave detectors.
78
+
79
+ GWpy provides a user-friendly, intuitive interface to the common
80
+ time-domain and frequency-domain data produced by the LIGO and Virgo
81
+ observatories and their analyses, with easy-to-follow tutorials at each
82
+ step.
83
+
84
+ <https://gwpy.github.io>
85
+
86
+ # Release status
87
+
88
+ [![PyPI version](https://badge.fury.io/py/gwpy.svg)](http://badge.fury.io/py/gwpy)
89
+ [![Conda version](https://img.shields.io/conda/vn/conda-forge/gwpy.svg)](https://anaconda.org/conda-forge/gwpy/)
90
+
91
+ [![License](https://img.shields.io/pypi/l/gwpy.svg)](https://choosealicense.com/licenses/gpl-3.0/)
92
+ ![Supported Python versions](https://img.shields.io/pypi/pyversions/gwpy.svg)
93
+
94
+ # Development status
95
+
96
+ [![Build status](https://gitlab.com/gwpy/gwpy/badges/main/pipeline.svg)](https://gitlab.com/gwpy/gwpy/-/pipelines/?ref=main)
97
+ [![Coverage status](https://gitlab.com/gwpy/gwpy/badges/main/coverage.svg)](https://gitlab.com/gwpy/gwpy/-/pipelines/?ref=main)
98
+
99
+ # Installation
100
+
101
+ To install, you can do:
102
+
103
+ ```
104
+ conda install -c conda-forge gwpy
105
+ ```
106
+
107
+ or
108
+
109
+ ```
110
+ python -m pip install gwpy
111
+ ```
112
+
113
+ You can test your installation, and its version by
114
+
115
+ ```
116
+ python -c "import gwpy; print(gwpy.__version__)"
117
+ ```
118
+
119
+ # License
120
+
121
+ GWpy is released under the GNU General Public License v3.0 or later, see
122
+ [here](https://choosealicense.com/licenses/gpl-3.0/) for a description of
123
+ this license, or see the
124
+ [LICENSE](https://gitlab.com/gwpy/gwpy/-/blob/main/LICENSE) file for the
125
+ full text.
@@ -1,22 +1,22 @@
1
1
  gwpy/__init__.py,sha256=3chu5cxfVA08qkFYk3lyXBlFXO6lrgytIIdh_nL9YzU,1533
2
- gwpy/_version.py,sha256=UsWpfolO3V5lhkRSzLYHaglRPoxe1Nfcc4kMi3j-8W8,411
2
+ gwpy/_version.py,sha256=8x3USMh-QXDOqs112oCeNZdt7w1M5P5hyLCG9bkT-c4,413
3
3
  gwpy/conftest.py,sha256=nMqidKFNcwTCvDb-vHzzCmzUyyL0TH9DwbmagfdE1II,1639
4
4
  gwpy/astro/__init__.py,sha256=DtaqsbVdlI4Qy6eRlXuLtraTCLXjpQYadk5pEFwXrM8,1909
5
- gwpy/astro/range.py,sha256=ah1TLCNk8Pq8YBHaXKuglShO8rFbmDgO2z4SOuWlDEc,24880
5
+ gwpy/astro/range.py,sha256=BcRrJkgxiceL1QsOy1uUtCMslEeic0MUxWFs76LgY0Y,24892
6
6
  gwpy/astro/tests/__init__.py,sha256=jDVhmCPpiwaMzDz1Dq_TQTd4rfY5it5qfZ17bohcCOo,746
7
- gwpy/astro/tests/test_range.py,sha256=o1WFz2rRzqqI1V_RdIVb2GaPxWZpIDHjc0MzD_M8zn4,6032
7
+ gwpy/astro/tests/test_range.py,sha256=ikKMYljmQe6IMWRMi2Vn48y5So_RVibD0U-ioLoEODk,6003
8
8
  gwpy/cli/__init__.py,sha256=3DnwWaykhjk-bT0h3n-f8vSHNtGzpi7RVG3rbOkFQhM,1404
9
9
  gwpy/cli/cliproduct.py,sha256=9OPACkQyjQmRtEmIgis4O3NaQLQV7AvEET1T44rSyLM,34269
10
10
  gwpy/cli/coherence.py,sha256=CbGwFl9pLHNncBMRdEr5mv-6EJLuML56Tp_kMD4F-Ds,4048
11
11
  gwpy/cli/coherencegram.py,sha256=mpGG3fHBR2OfjhfnRm3VgewAdr6wUgB6kwtsCeWnc64,3353
12
- gwpy/cli/gwpy_plot.py,sha256=CaxV0CsLUjsj24hGjjn5pwmKGq10I3-4qJoZvOKlSf0,5099
13
- gwpy/cli/qtransform.py,sha256=aXtgnc0Jb6UnHsaVDHuYhZclj4jsS6OPN5VnKrMg-dk,9140
12
+ gwpy/cli/gwpy_plot.py,sha256=54rjAoiywUA4KLL03JyXsg0yd57XTHqXbxl9n-Gb2K8,5101
13
+ gwpy/cli/qtransform.py,sha256=jC44b5YLmR5N5CC6YN5FrnntOEPD1wb-Sk8N4Dif840,9148
14
14
  gwpy/cli/spectrogram.py,sha256=NlNHVJhjb162j5P5e0G_6ngcbPlCW31Umw-IqKmsqGs,7131
15
15
  gwpy/cli/spectrum.py,sha256=IpBhoi70h1Cx1R6qlA3RMCyB7BXWrNFyQEVRpEIOSWE,4899
16
16
  gwpy/cli/timeseries.py,sha256=GWRQnUzc0oI2cJlDTTGnwRdFaL2X0ky8nlzMZF6dlvs,3891
17
17
  gwpy/cli/transferfunction.py,sha256=O1EUUWL5Wn6ZoJieVXu1YlCpuoZhmdtPLHvNGE_6fbQ,9784
18
18
  gwpy/cli/tests/__init__.py,sha256=5kO_qzfJZbuffI8x4SQDMAv1NRRlm0XYjrgZ0vIpWW4,744
19
- gwpy/cli/tests/base.py,sha256=RsZBnB1sfi1ChiVq2AYf5o05lnuGPLZbwYRjs2v4_0A,10831
19
+ gwpy/cli/tests/base.py,sha256=b1U9JZybQQRMd7569oT552E_mM7i6TZnP3kwkYd994E,11213
20
20
  gwpy/cli/tests/test_coherence.py,sha256=3ue1akkasZwUDfLQ6vk4BL6lYwhYmkWTAcgeB8ncmNM,1353
21
21
  gwpy/cli/tests/test_coherencegram.py,sha256=BvRpIOIkedzcrK0zo2o4bS41F7m4HYBsZekfJ41NEB0,1580
22
22
  gwpy/cli/tests/test_gwpy_plot.py,sha256=idX0p2uFpGAsCxSRhFhkYq-hV0IMrw7GXkIXUja7tCk,1718
@@ -27,7 +27,7 @@ gwpy/cli/tests/test_timeseries.py,sha256=HCYeRdk1Y7owMHTURmV-G9N4iSPZpoKXKvfigOr
27
27
  gwpy/cli/tests/test_transferfunction.py,sha256=VCve5NgBQo7tBgM5zaBlqY29R0ymc7Tfk9pRpJLsBdg,1999
28
28
  gwpy/detector/__init__.py,sha256=gsC_0ca8m8xRQzQ8ns6fpwFQ14_uxUu1LRh1B-sN6EA,2252
29
29
  gwpy/detector/channel.py,sha256=2X37knAbqzDg3GavKheXnOHOAgVaPHrOFQ4f4WpmvPc,26786
30
- gwpy/detector/units.py,sha256=4Ne7sq5oliJQlTVVbASBzwdLXvxdvB6gQo8Sz100vxI,7303
30
+ gwpy/detector/units.py,sha256=KdHrKyN6CSuA9zh1LanQKIdd4LAt7PwPJ-5RBpMP_00,7364
31
31
  gwpy/detector/io/__init__.py,sha256=dAsz8ii5RVhwI_BNVjYrsnX1Pt3nfjh8jqVl4xqLTec,1037
32
32
  gwpy/detector/io/cis.py,sha256=gHGnB68xMAv0xQUG4eazA-4Jp0BesYlrttPBXt2g2Qs,3184
33
33
  gwpy/detector/io/clf.py,sha256=AusPzKEEuJM6qRyrAzBKmVeYrpnU8Tniql1DPtVHW28,5689
@@ -45,12 +45,12 @@ gwpy/frequencyseries/io/hdf5.py,sha256=_Fdr5Z8__Q1xh3XYVJdSBTDxRb0cJ_dIt2J-q_V-g
45
45
  gwpy/frequencyseries/io/ligolw.py,sha256=8MdCcYPHdum6UjWWVO21X3gizOSpFKOLpqzQZmvspYA,1149
46
46
  gwpy/frequencyseries/tests/__init__.py,sha256=t0bL_VWIaPVKnxEZhq67LlyHVnjca9b01GBDQmOI4TA,756
47
47
  gwpy/frequencyseries/tests/test_frequencyseries.py,sha256=khe7VzuiMaNzGlP2YkYkMOLfpZvXmckPsf4ifEsA3D0,11033
48
- gwpy/frequencyseries/tests/test_hist.py,sha256=rfd6PEjp30TwoTD8ajlUkdTKOkqZs5hs385rX-xzEbc,4126
48
+ gwpy/frequencyseries/tests/test_hist.py,sha256=hAhFzX2k2irV6QhQUciF2L4sQYmG9qSiL7Mnv5MW4zM,4237
49
49
  gwpy/io/__init__.py,sha256=Y-QjvthCmjEKRHxix-0iZjx9-VKT30ynPT4bWbKdAA4,831
50
50
  gwpy/io/_framecpp.py,sha256=1CTZgxJ7YD8tZv_zP9Hucj9_TE0oMrtdhFWSncZ5jzo,4250
51
51
  gwpy/io/cache.py,sha256=6kX4akC7a9m3B8AvDmwVYgiVkBb2L6B3IiPFyoweAnw,15124
52
- gwpy/io/datafind.py,sha256=QDuGUXZwr4rJHpM-nLbBxCIa_mxs1TOs19fTywE1f3M,18462
53
- gwpy/io/ffldatafind.py,sha256=LMJQpZ5BmaybzxuFwHKo9UwVFmgmQt6GJrLZMag_4hY,8399
52
+ gwpy/io/datafind.py,sha256=MEgH8n2YjIT21AY_jAIUJDtT994F87n2rEwTMMCwF0w,18485
53
+ gwpy/io/ffldatafind.py,sha256=OFcMEPT8FqKFMV_tnwRIggqvLgUSgVYWcdP1FnRrwnk,8766
54
54
  gwpy/io/gwf.py,sha256=6MxFq9-59nwOcHe7d13zF9BYpDfVCXaINK-KvntF7ZU,18966
55
55
  gwpy/io/hdf5.py,sha256=Pg8zIv1dy7I9Z0sBM6vtry97igHej5gFnBukjsTiiX0,5257
56
56
  gwpy/io/kerberos.py,sha256=4tFPQ5iOy6cOe9MCEJqVqJZZ287EKh8VF64BPPiOPH0,6928
@@ -62,7 +62,7 @@ gwpy/io/utils.py,sha256=xLn9EI1VrSX2NqhsTvLvBLg8vLKQXPD6L0MOL8Z9WDg,7341
62
62
  gwpy/io/tests/__init__.py,sha256=4QFcOfH6EHMs-fH0nYKYwgKlf2-c5bINDOjhULDWc20,743
63
63
  gwpy/io/tests/test_cache.py,sha256=-FB4qcbFDKkzdC4gyt-vFnqIyhvfPw0EiZ1RJgjAFEQ,8567
64
64
  gwpy/io/tests/test_datafind.py,sha256=LERgMx4kkEOlrFhugYqPv3Aahp5THC0-q36oTwGsU9c,10597
65
- gwpy/io/tests/test_ffldatafind.py,sha256=dKKRrFOUIScwTQC7ZWMu_kI5FLp1QLwXlkJqpJu49eE,6277
65
+ gwpy/io/tests/test_ffldatafind.py,sha256=IS6cILpWRdkxSribsRt15wvhGxhVEOjwjHEmF9lPV00,6409
66
66
  gwpy/io/tests/test_gwf.py,sha256=qCnxxjGKlKv73YcmUxGJJoLQPlTCTvbPu2ivj5V1lN8,4228
67
67
  gwpy/io/tests/test_kerberos.py,sha256=LsH2ux8B3biMT9XGHvmpbH84Twu3nqZtAPVoTifmVH0,6492
68
68
  gwpy/io/tests/test_ligolw.py,sha256=62XIFD8T5Omfz4qoZcoDtPHuwgSUYccYSZBEouVgdy0,10701
@@ -77,10 +77,10 @@ gwpy/plot/colors.py,sha256=qmrM4u4Ir8OB2jkHUG3ZnriUlp1sdAB_IAb0H9mhC_A,3367
77
77
  gwpy/plot/gps.py,sha256=Xui1PMSh9K0ovSFuLyVJNKsMoNoOqppQtoEU3y5ZVDU,16846
78
78
  gwpy/plot/legend.py,sha256=mD07CTmv0rF171olt6ObsK9k4i-TxKacHQ4kBRzdb_0,1635
79
79
  gwpy/plot/log.py,sha256=Sn1BJRB5ml0oqE8UXBphb7MDhwu7ru-UtlvG4i5qTyE,5030
80
- gwpy/plot/plot.py,sha256=Ci8bxBgld4PjbeFtQQ_19ryYENJ1EHcIQN7f18Xi99c,21866
80
+ gwpy/plot/plot.py,sha256=9aAdInsN5Aoa06VIxhVkCTbi53fSpdSEOrbRvErvsZ8,22080
81
81
  gwpy/plot/rc.py,sha256=cK8pOzcvuRsMv_16k9Hl2mkn_dk8FaRrIVhtNhBzyp8,4816
82
82
  gwpy/plot/segments.py,sha256=HhjQEv8G00Rp7iRun98CGIk91-c_vAvEsv-uch3CbyU,16943
83
- gwpy/plot/tex.py,sha256=KZXQzqloDFuv5sfVw7-qNjk54FalYHg7Qjae0cs3-Cs,4819
83
+ gwpy/plot/tex.py,sha256=W1EPjdd9T6H2irDsbbbNNLL_CqBcYRTcAWx9OlsCcFg,4869
84
84
  gwpy/plot/text.py,sha256=SPVO-QQe6B6SaPiycS38EwZGmVbwQfxQfQ1cjbGeOiI,1989
85
85
  gwpy/plot/units.py,sha256=D0bWwYIAg-QuWpsNvze9UFuHoBX9p81B-Dlj5kbDxRQ,1825
86
86
  gwpy/plot/utils.py,sha256=uRz9Gqy_2Mxk-2Nvw9wy-kIoAKUDeSDALMRkSziQyZY,1670
@@ -92,13 +92,13 @@ gwpy/plot/tests/test_gps.py,sha256=l2FhNOpR1u6NxczaaDf1Wq_moOPFVFC1wQiyX-6jvJQ,5
92
92
  gwpy/plot/tests/test_log.py,sha256=WLYEOYVxwIkXQWGMqioeC0mEB0JbVQxkowlwmUbPqkc,2652
93
93
  gwpy/plot/tests/test_plot.py,sha256=BJJkkmbJ_RHKQhD4oDeBCi9Ym9Vnrizh_1F5VxLbMlU,4398
94
94
  gwpy/plot/tests/test_rc.py,sha256=8wxIVknBtJOnDWtWlNyPMPlgzYFLFef9BmOsOMIlBfQ,1252
95
- gwpy/plot/tests/test_segments.py,sha256=ySCcn7LFGA66zgZWnZBJrJ9Rdn0WObN4-DEKhfvMlLM,5442
95
+ gwpy/plot/tests/test_segments.py,sha256=Sh1dL5sE0WWlN6OLYuA9_GmkQYcDN-VqROzUF5MGSms,5478
96
96
  gwpy/plot/tests/test_tex.py,sha256=nrmwfpBMuoE9PoCx_lbpCjT-fTHWAlYmcgmJIcKuPro,2423
97
97
  gwpy/plot/tests/test_text.py,sha256=9gITSsIKiERP4_iN2iB6K-mUL4PRXvL06jon2zUoSNw,1291
98
98
  gwpy/plot/tests/test_utils.py,sha256=_PgJNR3Ly6T26ixCwXMm1NmjAqPhPvHL2r2iza3VgfY,1615
99
99
  gwpy/plot/tests/utils.py,sha256=_G0yoG1qJ1iz2Iz541_dqSyWQz3rJLOwKbXeZDPL55c,1925
100
100
  gwpy/segments/__init__.py,sha256=9h0gedE_OjlNqWmwibTNLSsjqTokbXVKYMfMKSaKocQ,1194
101
- gwpy/segments/flag.py,sha256=gr4F8AdFjKHWBo7nsVVPZ6ZzDQyO-HIkFLJ3trs_SQc,53098
101
+ gwpy/segments/flag.py,sha256=VzlTMv1Cyy3iCV3zj1PV4RIEMSXivr6X_SR3Hz4dYT8,53042
102
102
  gwpy/segments/segments.py,sha256=bozaq1fYPO_a4MxwU35Iaaf_t3d59K1jtISvoMwItxg,9042
103
103
  gwpy/segments/io/__init__.py,sha256=ObnJsqSk_Y8qD5-OVmYRcdtDbZcm5pdEu0kRoI9vHtA,1005
104
104
  gwpy/segments/io/hdf5.py,sha256=gH0xKxLBx4OQlUjP2Bvsyt02SKY8dVFG6D6poKWBQ4s,11048
@@ -110,7 +110,7 @@ gwpy/segments/tests/test_flag.py,sha256=LdpG9PUjlirl-54rdMDRv4d4ASJbhWmpA6RVVltR
110
110
  gwpy/segments/tests/test_segments.py,sha256=VSvjy3p4MuVyucK_QB5PfOjZ0FvJU-jd4pNHv7ppiE8,5360
111
111
  gwpy/signal/__init__.py,sha256=1FcrzAPP5fkp9OzrpQyrDswINDqGuLYY_cdtJQttB64,972
112
112
  gwpy/signal/fft.py,sha256=YS2g5Urh5Y4x_L2rGts11O5t-M5Y_yAtAvrFkqTv4KQ,1189
113
- gwpy/signal/filter_design.py,sha256=cqCl0Yu_PrSOgGC2j_jjtFdtPzsl6d0F1jKuG_fMWok,20270
113
+ gwpy/signal/filter_design.py,sha256=IGKHJOyFGpEyax06hs3TzlYpcP91UPpIKvQW4pbGaZ4,20339
114
114
  gwpy/signal/qtransform.py,sha256=3yhxkioNa3EdwKvsmvYoXnQqA8VPAZW58OnAuE4YHxw,24471
115
115
  gwpy/signal/window.py,sha256=ukwcyoAtmLC6LWGyvcOh-gyh0s8paIVk3Z5gjCUk9F8,5927
116
116
  gwpy/signal/spectral/__init__.py,sha256=dEKuHIaekXqgmoBJ-gvE0xWym9d7STcAAmewY8qo8xI,1818
@@ -122,8 +122,8 @@ gwpy/signal/spectral/_scipy.py,sha256=cLoWA9CynvCdTXW3X22H2GBgYx4-o3cMVZorFlWMjd
122
122
  gwpy/signal/spectral/_ui.py,sha256=MbB3aSUFS4bS5S39fEcSqyhbC6Foq15PGlazVJalWjM,14241
123
123
  gwpy/signal/spectral/_utils.py,sha256=qSaj1GctqOd4HmiVwtfUUrBXvZAh0WJYbKiePUKEa1E,1669
124
124
  gwpy/signal/tests/__init__.py,sha256=k8yHNX5UvKYZCwZQA4oDEK7gNAYMX7JLhztV67_JoOY,747
125
- gwpy/signal/tests/test_coherence.py,sha256=Rk3l7vbvoG4uHIMJodsjchocKWaaKMD0KH3tq_NgDFw,5119
126
- gwpy/signal/tests/test_filter_design.py,sha256=16BgVPMAFcHML4gsvioT3rLkagiV2vengGNxLJDnGHM,4349
125
+ gwpy/signal/tests/test_coherence.py,sha256=Bb6oUfnZvCeHxbKYky0cJ1r87hONNFAtXFMC5ovD3LQ,5554
126
+ gwpy/signal/tests/test_filter_design.py,sha256=_TyguEED-zkv594XdcKaYkic0EhVFBYHPAHza8UyzAg,4349
127
127
  gwpy/signal/tests/test_qtransform.py,sha256=LKBow9vIYI7jRNjuzw53WgsJYMSv9EwkQt-T_Xti1Uk,4017
128
128
  gwpy/signal/tests/test_spectral_lal.py,sha256=b7LkyTYtSMVBxikwHQQG042SS1_Zj8WHYqHXWB8lXvo,3543
129
129
  gwpy/signal/tests/test_spectral_median_mean.py,sha256=K5436i5He7_f9N4xI3pyziIKkKaVQOO_lr9kWR4Q3_E,2195
@@ -139,7 +139,7 @@ gwpy/spectrogram/spectrogram.py,sha256=O5Q8I3iGKRJPuw2abgGElXgpDTc1tyNTpRxCLteDj
139
139
  gwpy/spectrogram/io/__init__.py,sha256=JV8rlAcWqxqxMDhPOeGpOHZplqEfMij7KCIJjyJKhWE,846
140
140
  gwpy/spectrogram/io/hdf5.py,sha256=lhYN6Sz8NbjwjiDg9uMwsJyyrUfOJyIDFA93LcuEafs,963
141
141
  gwpy/spectrogram/tests/__init__.py,sha256=wbvEjFoPSs3mjTQEn93ZBYxSmZeK7Qkx9IFyUplQXco,752
142
- gwpy/spectrogram/tests/test_spectrogram.py,sha256=0NU-walZSbBIKMInn1xzbtdkE7esCSldBxQYLAN8tE8,6590
142
+ gwpy/spectrogram/tests/test_spectrogram.py,sha256=HNvTZ78HAlk1sPDCoGKui3r36Si6LjTaOt8ityyMgLI,6604
143
143
  gwpy/table/__init__.py,sha256=RQrS8y375ofpT1qOTyL4eh-QZ8wA9NIfOqu14GK58g0,1418
144
144
  gwpy/table/filter.py,sha256=TV2Krai3cVgHMCJ4oBScwrDDecMShhLRjGRyXeOqEFk,7918
145
145
  gwpy/table/filters.py,sha256=SbUWB-yid0G8_2q577-VvJxOsNt_qBGFDYS6cbKjJAM,2645
@@ -152,7 +152,7 @@ gwpy/table/io/gravityspy.py,sha256=rBxxA1a3EN4YI5LW9CQSXdffUnhPV7EtJFSgf4E-aS8,4
152
152
  gwpy/table/io/gstlal.py,sha256=SxCYJ_8yuVGGOl7YtCXaLpIuvFHfCRe3VJUvwBkOhJg,8390
153
153
  gwpy/table/io/gwf.py,sha256=bOhM7A19Gkyj-8llhn30LSwZLvTJ_wvdtnabWRepgd8,5433
154
154
  gwpy/table/io/hacr.py,sha256=raOFk51Lmk9Kc6fMWnt0GdIw2h3hZsH8kbKXn71wXWI,5205
155
- gwpy/table/io/ligolw.py,sha256=IgCJPp0GMYXNmKUgjsH444uj8LQCWYYqy8z_FdbCUPo,13590
155
+ gwpy/table/io/ligolw.py,sha256=h1I_TZKWXmZ4YQ_PrZqfe5s_mpDyCpEE2aAe_PfGCbQ,13591
156
156
  gwpy/table/io/losc.py,sha256=wMhssG-d1lgG2wNhieG5mFXwpyrzROIGaTiX6cwKZ3w,4434
157
157
  gwpy/table/io/omega.py,sha256=5AyWynSb3h30RxE2c_H195HuRtdLdkE8tHuudIWo_lg,2604
158
158
  gwpy/table/io/omicron.py,sha256=1TkP4OhwvyjO1LzKQuKRAXb3gDhPUT3ruaDzGdaMrwk,1333
@@ -164,15 +164,15 @@ gwpy/table/io/utils.py,sha256=V4Ar90f1wYQ9LbE6BYjPBWqLqCKSsejCsDccmx1t_bc,3183
164
164
  gwpy/table/tests/__init__.py,sha256=3ZMqpj4n63jKiKMH64hfqLsE8_7xxU8xjZgc3hrXtIw,746
165
165
  gwpy/table/tests/test_gravityspy.py,sha256=7epyrhKdMcmA7uN5-vFhY1LfifdPOuPUGv-qK4FXjKk,3392
166
166
  gwpy/table/tests/test_io_gstlal.py,sha256=Lm8eEfj0-agFm6g9_SUB0Judr1QZYEEiyfPYSmQGxSg,7979
167
- gwpy/table/tests/test_io_ligolw.py,sha256=CzE5USIwrtv6-KeEYiLxmTZ8m9SwqsO87ZLgF6JJgIU,2848
167
+ gwpy/table/tests/test_io_ligolw.py,sha256=_0SlfsSTQ1LZWcjvydqggLyieU8kTLIJDGTwMg3z2BQ,2844
168
168
  gwpy/table/tests/test_io_pycbc.py,sha256=65f_AXgD2DCeIcz-rDOucjRStWRd__VQRfK1gcYFaj8,8313
169
169
  gwpy/table/tests/test_table.py,sha256=HthR885GqcBQSB8vD5Q6sOSPHojo8m5fa8HPeFx5m6w,30399
170
170
  gwpy/testing/__init__.py,sha256=_dtbhI4nOnnUPu8hLZUTUZxgPCq2KB2ATZiLEns9ybw,745
171
- gwpy/testing/errors.py,sha256=WeRm5QbqfFNxvNvXnrTBj7NOueJPMQJErmiGstZBL50,2783
172
- gwpy/testing/fixtures.py,sha256=G2wyCcVFYaeSG5zZ_MiKbRrieIGk0KHitHVXvQyRyAk,3774
171
+ gwpy/testing/errors.py,sha256=tITVQ2o3mP7VICKK2T0d9xfZeV0JwNMWaarARVSpCm0,2820
172
+ gwpy/testing/fixtures.py,sha256=pu0sA3l3rcs0osVj97C0lmENYDa-1SF5B44uXey5cb0,3344
173
173
  gwpy/testing/marks.py,sha256=BIZ2Q4yfJSS9YQWCWSOwt66JKFnrhbx5XPXbvwfuFyo,1480
174
174
  gwpy/testing/mocks.py,sha256=3GoAT1z-1LJXNuoskCmpSi3GTqAa_quO7Tm5pyns0SA,4131
175
- gwpy/testing/utils.py,sha256=9ifPU06_yKE1icqHGOxVs5TKkHLTYRspoMYC5j9-7yE,12002
175
+ gwpy/testing/utils.py,sha256=yb6HFq_bmqlXiYkM1f-dzKkMBqBtipFhdQwSpI3yDSU,12058
176
176
  gwpy/testing/data/H1-LDAS_STRAIN-968654552-10.xml.gz,sha256=sEScnAbXjkcGtlY3GN_x0ual25EUWRaAGK31hvLOpW4,58124
177
177
  gwpy/testing/data/HLV-HW100916-968654552-1.gwf,sha256=AE5d5_T2MgQ7nnNC-cbnkKhRwc0USW_VjGXHEJzg5Hc,377295
178
178
  gwpy/testing/data/HLV-HW100916-968654552-1.hdf,sha256=5Yedvju4PUFFa17sZVIiBdbSwFlLTMF6UgrB7QvMJTw,382679
@@ -185,12 +185,12 @@ gwpy/time/tests/__init__.py,sha256=EF4G-IubXcMA_-mucDvcpjqM-ITyp0G_3cvO0VeYdxI,7
185
185
  gwpy/time/tests/test_main.py,sha256=3QV6kTWQ6AkGCYmqxfw-JfAoiR6VXzyrM__7XeyQvTI,1362
186
186
  gwpy/time/tests/test_time.py,sha256=Cj3Yv0N4MYi9C5fzuXPgR6rge6aKgfIbnhUwzeKDRDM,4402
187
187
  gwpy/timeseries/__init__.py,sha256=e-ncacmSPxUUmya8xlQ-Govk4ptr-0TVp26vMIPmxTU,1134
188
- gwpy/timeseries/core.py,sha256=Ntvo0F6WPXfMRAwuulSWEsK-SP6qlB0PNUoLw5bz7s8,57838
189
- gwpy/timeseries/statevector.py,sha256=Ns65za6o1L49mXUN-WukP-Lz3vxQw330Od2FzPjQGbI,35811
188
+ gwpy/timeseries/core.py,sha256=DOGeO3kjk7twinS8aDDwgNKIZLYrGtnfCPOm05KKxi8,57804
189
+ gwpy/timeseries/statevector.py,sha256=9yAlpBbR8eWDMK6PTpuGUAwAGO1tyE07SohfU2DJUJs,35891
190
190
  gwpy/timeseries/timeseries.py,sha256=lg28EEMASBR2IS_4gJfcU0j3uo7tEfFEVjK-Uv64ziw,87809
191
191
  gwpy/timeseries/io/__init__.py,sha256=qviFCaeTVeTZ7ZiIQKQyU1xxh76Ba60yE9vVtm9y1bY,938
192
192
  gwpy/timeseries/io/ascii.py,sha256=M05FDTCa06KLJ1Sb0jDh3NxrmMboV73j38nyMacVPkQ,1185
193
- gwpy/timeseries/io/cache.py,sha256=x80oku7oIbq-6FnHiEu4Ug85TWDLg09gBU-fh2Z0iLA,2602
193
+ gwpy/timeseries/io/cache.py,sha256=xN-lSjsBy7Heo_9X7FVRYneA4HaEMpLs4Q1Zc7lJSoA,2794
194
194
  gwpy/timeseries/io/core.py,sha256=1hp7f7UgcEEqw1T9Oa0DGMMg6uyKJih8h4A3rNkx0SQ,4692
195
195
  gwpy/timeseries/io/hdf5.py,sha256=eGiqWQIdD3Lu-74F6qiw9dKq6GSjBHoroanNsdzcy2E,4214
196
196
  gwpy/timeseries/io/losc.py,sha256=QwBdN-E2CU7L27QRg80RLM1U3TwJ_4abpudci3STt8M,9419
@@ -199,18 +199,19 @@ gwpy/timeseries/io/wav.py,sha256=E_EjIa43nzpps18x-ekollMvgPbrKyqt1v_VAXicbPQ,359
199
199
  gwpy/timeseries/io/gwf/__init__.py,sha256=C1HRu4OVns8pTPQG7hLTZFxqIS7PZnt1cLmKKf5m4OQ,13156
200
200
  gwpy/timeseries/io/gwf/framecpp.py,sha256=sFrsWr5uiE5p7wym-u3oMPsKih4OckZoXLdnTLKbfS0,17223
201
201
  gwpy/timeseries/io/gwf/framel.py,sha256=UQuydhR9reAgSmYSI0lqHJ7120gDyXHoImaQUjXz0mc,4776
202
- gwpy/timeseries/io/gwf/lalframe.py,sha256=dH-rwLkqgoiUYQAcZvitT-rmCIOXrYoL2tCezlFqNGY,7485
202
+ gwpy/timeseries/io/gwf/lalframe.py,sha256=zXaDxnSWW9d3xdkwm8hQLnQAN_hEmTuZ4ibsJYndBzw,7729
203
203
  gwpy/timeseries/tests/__init__.py,sha256=QJdnWz_IQOTYq6MvKuBzz2HFiNVf6QMXrZ-kDks-lDI,751
204
- gwpy/timeseries/tests/test_core.py,sha256=9tJ5_ifgdW91Ga_l7AoExLN9QAMNaTcgNep3eu7Rvbc,19685
205
- gwpy/timeseries/tests/test_io_gwf_framecpp.py,sha256=2EHmlVLbM3J-6YQmaxiCHNL1Fiw7Lur4fRiMJDCY1kM,2265
204
+ gwpy/timeseries/tests/test_core.py,sha256=YEFCcH0zj1z0Qz1uczhvCs7nbqasGyLLPEf5NdaJB6c,19613
205
+ gwpy/timeseries/tests/test_io_cache.py,sha256=nEEDjEaJ8Nf9KV2p6k9LchbmhvU-O5xcmJT2gbC5QZw,2294
206
+ gwpy/timeseries/tests/test_io_gwf_framecpp.py,sha256=S0MgBEZ2_o6MDrBfAZbj4SWk3LDbagh6XOfBAySuoWE,2267
206
207
  gwpy/timeseries/tests/test_io_gwf_lalframe.py,sha256=iD9m01menvAgUXoGJnX7Xv-O5t3mgX2C2N2nRN-gitY,5479
207
208
  gwpy/timeseries/tests/test_io_losc.py,sha256=E_bLM3bc4TO2-cMOEF3vDG8cr6TKgQwPY-EBN6DzyUg,1833
208
- gwpy/timeseries/tests/test_statevector.py,sha256=NOSe4BRwIKoaax_YnxoP2UQ1mpy4Zbw8zJPbcI8OHzE,12935
209
- gwpy/timeseries/tests/test_timeseries.py,sha256=7J7KjGFtkphtec09ZqRwSzZviDvJLpECJFxAdZWg1Tk,57276
209
+ gwpy/timeseries/tests/test_statevector.py,sha256=-wmDd1GLEXeR1vWa2jixndLyx0WL4eYJLU-BlcEA9JE,13768
210
+ gwpy/timeseries/tests/test_timeseries.py,sha256=fa_6tnHEJTgqcDbLgLMsSa8dmUwxq27frWQLj0bURrk,57347
210
211
  gwpy/types/__init__.py,sha256=JIpXRdi0av2V0BkynOwUhijxQShSAqE5gLrowJ6Nckg,1159
211
- gwpy/types/array.py,sha256=JiwmwXmSIYY-Y08yrs5sUJu3a0iAQT3kE0mWmKT3g7M,15282
212
+ gwpy/types/array.py,sha256=D4EwGC80hKFhrRuFD3xnHaqJR7jdT88v5nik-3o-RU0,15595
212
213
  gwpy/types/array2d.py,sha256=NtwW5T6PWHiAS6kFYUfF8fm3WE4qQdPbXN01iaBET0k,12367
213
- gwpy/types/index.py,sha256=JMvhf5HyT8mIRemj3aBY0A6aliEKMgyt6rDGNoiPO0Y,3074
214
+ gwpy/types/index.py,sha256=35bEHsDmxTyDFItjngxZUrfk2l-bw1TkTse4KCLqTBk,3154
214
215
  gwpy/types/series.py,sha256=zcRvwoFoVJbpxBs8-eTdx7zV3Vb_B4oEtv3dXwj0lWM,36490
215
216
  gwpy/types/sliceutils.py,sha256=Eaqbn0ZCCQ4couMm4JuL51-3tIcykotk5vPnGBYqD20,3619
216
217
  gwpy/types/io/__init__.py,sha256=B5A4gqpldCnd9LjZ0BEWU5qaJI-tWU-Du0n_gEcw1Cs,905
@@ -218,10 +219,10 @@ gwpy/types/io/ascii.py,sha256=bamzUBneh2DZXjQ1jPlUjMvfnvBU-ckjGJ4eYR9zzY8,2872
218
219
  gwpy/types/io/hdf5.py,sha256=OMGrLD3B3oiJpN9q_-OHUhVXxkJKxDWVacEcpwGK5A4,8019
219
220
  gwpy/types/io/ligolw.py,sha256=p0181ziPEuKcJJBA9WVOYmus7KD7UzGai7xCd7U49-A,7267
220
221
  gwpy/types/tests/__init__.py,sha256=1-XqGdROuPGF7ee-MsWjZVh5uY29SKGuA6VlJs4Z-Ac,746
221
- gwpy/types/tests/test_array.py,sha256=1wbFCcvfW1C3ZrBC1aSK-TVmvPcUrCdINcoSAQRQ9rw,8608
222
- gwpy/types/tests/test_array2d.py,sha256=Bpg7VjmkfhDnJOkvKU2ndUJMLEfO4OvpyTK6HyBsCkk,9214
222
+ gwpy/types/tests/test_array.py,sha256=qIGurik5g-GxNl4oV6f2BpZf3swkiCA7WE4zn5jr-6s,8698
223
+ gwpy/types/tests/test_array2d.py,sha256=RM072wwSvCOQb1LQFzOjrXkpMyuc5h7biQ18JmtIhgo,9089
223
224
  gwpy/types/tests/test_index.py,sha256=2DKZnlNCU2tQ1IU4w4yQGtRKTTvcJlSwFvQLjhV2RrU,2044
224
- gwpy/types/tests/test_series.py,sha256=3SZalBwPHErt8OVTr8fJAIer5p7tkkG1hdvAZ6kWMbc,16571
225
+ gwpy/types/tests/test_series.py,sha256=EgzmgTquXFevZ478Nxq84-BfeYMjaiKDDv8tUyB4xjc,16573
225
226
  gwpy/utils/__init__.py,sha256=OiPOQ69N9q8xE6VQI9rpEvhPx0bgAmHjxo-rV8RHoDE,933
226
227
  gwpy/utils/decorators.py,sha256=tvf4j3HarUIgbG_eFolbJcn5032nJBlhfZLK4UvaRKw,3723
227
228
  gwpy/utils/enum.py,sha256=o2LhVx0G_-T_PlDe1aGD7dlOu1ySY4rPx-UTasr_8Qw,1490
@@ -233,7 +234,7 @@ gwpy/utils/progress.py,sha256=coDB4ju-qJ710TGwposHAKZ95GWj36hJEBRHjl1-Frk,1367
233
234
  gwpy/utils/shell.py,sha256=PErkh4RGlS_2_FPX5_kKSUeQj-_CgCWSkA-kf2ON3iQ,3371
234
235
  gwpy/utils/sphinx/__init__.py,sha256=awmoBU_ou-WAYmR4SrqRniWrU0G1icxXJZN_9wuChs8,770
235
236
  gwpy/utils/sphinx/ex2rst.py,sha256=9q4Bk7eIx1rfCSDRSyqerXYfjBdIuwhQQWv-Y-XsAoY,4763
236
- gwpy/utils/sphinx/zenodo.py,sha256=msrzwDB436q-49sc_DtEBU8p6fW_38bM6i80a8hP0w0,4098
237
+ gwpy/utils/sphinx/zenodo.py,sha256=s_jw-lHizuLC6AQ6U--xN6PJFQ-BlLt207gDBmx_SrU,4148
237
238
  gwpy/utils/tests/__init__.py,sha256=ECvgWEjRqaYVJKOCfxbVSJmMrQS0k5iVanDJoJ7CHyU,746
238
239
  gwpy/utils/tests/test_decorators.py,sha256=CS7zoXcVS71VyVr7d9_ll7tWZjuFxBGuKsGKxpS331c,2209
239
240
  gwpy/utils/tests/test_enum.py,sha256=xOEKR-Id8krxTTBcTNlVjM-S_aGA__4_zMh1DupavM0,2185
@@ -243,10 +244,10 @@ gwpy/utils/tests/test_misc.py,sha256=rkTxdu7gv9Dxs0OI6IvGivGiAs3PuK8ckMtNF5_kE6I
243
244
  gwpy/utils/tests/test_mp.py,sha256=kZXUTFqCPi4wvCkGgSSk8XrG9pHPGakPNuNUykgSp-k,2062
244
245
  gwpy/utils/tests/test_shell.py,sha256=arHzI96Rmje5JPhbQ33vEN0ByRh8qwRVqfl4-jzLUv4,2334
245
246
  gwpy/utils/tests/test_sphinx_ex2rst.py,sha256=KcIBPWTsPp00iTdYT6bZ8g2F7bN66PaX5uLJlcWu0J0,2263
246
- gwpy/utils/tests/test_sphinx_zenodo.py,sha256=j40acUCrU8OjO0kPwzxWqq5yTqwTAJHgWJmvvrtB9KM,4556
247
- gwpy-3.0.8.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
248
- gwpy-3.0.8.dist-info/METADATA,sha256=KO4nJzOIEgKR0QPkyKmId50ePUTl0CmWFHhehyOKoCc,5191
249
- gwpy-3.0.8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
250
- gwpy-3.0.8.dist-info/entry_points.txt,sha256=pcO_XRknobU7b1uuxFb3nTdGMk8FrHQsWBOflnj6Ev8,54
251
- gwpy-3.0.8.dist-info/top_level.txt,sha256=0XRdsSjFdBe_QF_Qst002-CCxuuO13ag2n-11nBpZ4E,5
252
- gwpy-3.0.8.dist-info/RECORD,,
247
+ gwpy/utils/tests/test_sphinx_zenodo.py,sha256=GL-3R7yFxF6ZQLuVhJI74djdgvE9sX4Q0atdHi3SyiU,5237
248
+ gwpy-3.0.10.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
249
+ gwpy-3.0.10.dist-info/METADATA,sha256=5HAN-1AH7-zngu1o2VZrBVOjK0sHGA5gKNPE71IoB5U,4866
250
+ gwpy-3.0.10.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
251
+ gwpy-3.0.10.dist-info/entry_points.txt,sha256=pcO_XRknobU7b1uuxFb3nTdGMk8FrHQsWBOflnj6Ev8,54
252
+ gwpy-3.0.10.dist-info/top_level.txt,sha256=0XRdsSjFdBe_QF_Qst002-CCxuuO13ag2n-11nBpZ4E,5
253
+ gwpy-3.0.10.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,124 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: gwpy
3
- Version: 3.0.8
4
- Summary: A python package for gravitational-wave astrophysics
5
- Author-email: Duncan Macleod <duncan.macleod@ligo.org>
6
- License: GPL-3.0-or-later
7
- Project-URL: Bug Tracker, https://github.com/gwpy/gwpy/issues
8
- Project-URL: Discussion Forum, https://gwpy.slack.com
9
- Project-URL: Documentation, https://gwpy.github.io/docs/
10
- Project-URL: Source Code, https://github.com/gwpy/gwpy
11
- Classifier: Development Status :: 5 - Production/Stable
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
- Classifier: Natural Language :: English
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
- Classifier: Programming Language :: Python :: 3.10
21
- Classifier: Programming Language :: Python :: 3.11
22
- Classifier: Programming Language :: Python :: 3.12
23
- Classifier: Topic :: Scientific/Engineering :: Astronomy
24
- Classifier: Topic :: Scientific/Engineering :: Physics
25
- Requires-Python: >=3.8
26
- Description-Content-Type: text/markdown
27
- License-File: LICENSE
28
- Requires-Dist: astropy >=4.3.0
29
- Requires-Dist: dateparser >=1.1.4
30
- Requires-Dist: dqsegdb2
31
- Requires-Dist: gwdatafind >=1.1.0
32
- Requires-Dist: gwosc >=0.5.3
33
- Requires-Dist: h5py >=3.0.0
34
- Requires-Dist: ligo-segments >=1.0.0
35
- Requires-Dist: ligotimegps >=1.2.1
36
- Requires-Dist: matplotlib >=3.3.0
37
- Requires-Dist: numpy >=1.19
38
- Requires-Dist: python-dateutil
39
- Requires-Dist: requests
40
- Requires-Dist: scipy >=1.5.0
41
- Requires-Dist: tqdm >=4.10.0
42
- Provides-Extra: astro
43
- Requires-Dist: inspiral-range >=0.5.0 ; extra == 'astro'
44
- Provides-Extra: conda
45
- Requires-Dist: python-framel !=8.46.0,>=8.40.1 ; extra == 'conda'
46
- Requires-Dist: python-nds2-client ; extra == 'conda'
47
- Requires-Dist: python-ldas-tools-framecpp ; (sys_platform != "win32") and extra == 'conda'
48
- Requires-Dist: lxml !=4.9.1 ; (sys_platform == "win32") and extra == 'conda'
49
- Provides-Extra: dev
50
- Requires-Dist: ciecplib ; extra == 'dev'
51
- Requires-Dist: psycopg2 ; extra == 'dev'
52
- Requires-Dist: pymysql ; extra == 'dev'
53
- Requires-Dist: pyRXP ; extra == 'dev'
54
- Requires-Dist: sqlalchemy ; extra == 'dev'
55
- Requires-Dist: uproot >=4.1.5 ; extra == 'dev'
56
- Requires-Dist: lalsuite ; (sys_platform != "win32") and extra == 'dev'
57
- Requires-Dist: lscsoft-glue ; (sys_platform != "win32") and extra == 'dev'
58
- Requires-Dist: pycbc >=1.13.4 ; (sys_platform != "win32") and extra == 'dev'
59
- Requires-Dist: python-ligo-lw >=1.7.0 ; (sys_platform != "win32") and extra == 'dev'
60
- Provides-Extra: docs
61
- Requires-Dist: numpydoc >=0.8.0 ; extra == 'docs'
62
- Requires-Dist: Sphinx >=4.4.0 ; extra == 'docs'
63
- Requires-Dist: sphinx-automodapi ; extra == 'docs'
64
- Requires-Dist: sphinx-immaterial >=0.7.3 ; extra == 'docs'
65
- Requires-Dist: sphinx-panels >=0.6.0 ; extra == 'docs'
66
- Requires-Dist: sphinxcontrib-programoutput ; extra == 'docs'
67
- Provides-Extra: test
68
- Requires-Dist: coverage[toml] >=5.0 ; extra == 'test'
69
- Requires-Dist: pytest >=3.9.1 ; extra == 'test'
70
- Requires-Dist: pytest-freezer ; extra == 'test'
71
- Requires-Dist: pytest-cov >=2.4.0 ; extra == 'test'
72
- Requires-Dist: pytest-requires ; extra == 'test'
73
- Requires-Dist: pytest-socket ; extra == 'test'
74
- Requires-Dist: pytest-xdist ; extra == 'test'
75
- Requires-Dist: requests-mock ; extra == 'test'
76
-
77
- GWpy is a collaboration-driven Python package providing tools for
78
- studying data from ground-based gravitational-wave detectors.
79
-
80
- GWpy provides a user-friendly, intuitive interface to the common
81
- time-domain and frequency-domain data produced by the LIGO and Virgo
82
- observatories and their analyses, with easy-to-follow tutorials at each
83
- step.
84
-
85
- <https://gwpy.github.io>
86
-
87
- # Release status
88
-
89
- [![PyPI version](https://badge.fury.io/py/gwpy.svg)](http://badge.fury.io/py/gwpy)
90
- [![Conda version](https://img.shields.io/conda/vn/conda-forge/gwpy.svg)](https://anaconda.org/conda-forge/gwpy/)
91
-
92
- [![DOI](https://zenodo.org/badge/9979119.svg)](https://zenodo.org/badge/latestdoi/9979119)
93
- [![License](https://img.shields.io/pypi/l/gwpy.svg)](https://choosealicense.com/licenses/gpl-3.0/)
94
- ![Supported Python versions](https://img.shields.io/pypi/pyversions/gwpy.svg)
95
-
96
- # Development status
97
-
98
- [![Build status](https://github.com/gwpy/gwpy/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/gwpy/gwpy/actions?query=branch%3Amain)
99
- [![Coverage status](https://codecov.io/gh/gwpy/gwpy/branch/main/graph/badge.svg)](https://codecov.io/gh/gwpy/gwpy)
100
- [![Maintainability](https://api.codeclimate.com/v1/badges/2cf14445b3e070133745/maintainability)](https://codeclimate.com/github/gwpy/gwpy/maintainability)
101
-
102
- # Installation
103
-
104
- To install, you can do:
105
-
106
- ```
107
- conda install -c conda-forge gwpy
108
- ```
109
-
110
- or
111
-
112
- ```
113
- python -m pip install gwpy
114
- ```
115
-
116
- You can test your installation, and its version by
117
-
118
- ```
119
- python -c "import gwpy; print(gwpy.__version__)"
120
- ```
121
-
122
- # License
123
-
124
- GWpy is released under the GNU General Public License v3.0 or later, see [here](https://choosealicense.com/licenses/gpl-3.0/) for a description of this license, or see the [LICENSE](https://github.com/gwpy/gwpy/blob/main/LICENSE) file for the full text.
File without changes