Skip to content

Commit 09e3f54

Browse files
committed
Update to requirements-docs to add docs requirements
Drop markdown references to functions moved within the namespaces
1 parent e83b96c commit 09e3f54

File tree

5 files changed

+1
-14
lines changed

5 files changed

+1
-14
lines changed

docs/api/data/data_api.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -269,12 +269,6 @@
269269
270270
.. autoclass:: pyearthtools.data.patterns.ParsingPattern
271271
:members:
272-
273-
.. autoclass:: pyearthtools.data.patterns.ZarrIndex
274-
:members:
275-
276-
.. autoclass:: pyearthtools.data.patterns.ZarrTimeIndex
277-
:members:
278272
```
279273

280274
## `data.save`

docs/api/data/data_index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ The rest of this page contains reference information for the components of the D
108108
| | | - [ExpandedDateFactory](data_api.md#pyearthtools.data.patterns.ExpandedDateFactory) |
109109
| | | - [Static](data_api.md#pyearthtools.data.patterns.Static) |
110110
| | | - [ParsingPattern](data_api.md#pyearthtools.data.patterns.ParsingPattern) |
111-
| | | - [ZarrIndex](data_api.md#pyearthtools.data.patterns.ZarrIndex) |
112-
| | | - [ZarrTimeIndex](data_api.md#pyearthtools.data.patterns.ZarrTimeIndex) |
113111
| `data.save` | | - [save.save](data_api.md#pyearthtools.data.save.save) |
114112
| | | - [ManageFiles](data_api.md#pyearthtools.data.save.ManageFiles) |
115113
| | | - [ManageTemp](data_api.md#pyearthtools.data.save.ManageTemp) |

packages/data/src/pyearthtools/data/indexes/_indexes.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,6 @@ def retrieve(
751751
>>> | '2021' | All Data in that year |
752752
753753
Args:
754-
755754
querytime: Timestep to retrieve data at, can be exact data or range as described above.
756755
aggregation: If data becomes a range, can specify an aggregation method.
757756
select: Whether to attempt to select the given timestep if date is either fully qualified
@@ -760,16 +759,13 @@ def retrieve(
760759
kwargs: Kwargs passed to downstream retrieval function
761760
762761
Returns:
763-
764762
Loaded Dataset with transforms applied, and aggregated if `aggregation_method` given.
765763
766764
Raises:
767-
768765
DataNotFoundError: If Data not found at timestep.
769766
770767
Note:
771768
Extra transforms can be supplied, using `transforms = `
772-
773769
"""
774770

775771
querytime = Petdt(querytime)

packages/data/src/pyearthtools/data/patterns/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@
8585
from pyearthtools.data.patterns.parser import ParsingPattern
8686
from pyearthtools.data.patterns.static import Static
8787

88-
# from pyearthtools.data.patterns.zarr_pattern import ZarrIndex, ZarrTimeIndex

requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
-e packages/tutorial
66
-e packages/zoo
77
-e packages/bundled_models/fourcastnext
8-
-e .[all]
8+
-e .[all,docs]

0 commit comments

Comments
 (0)