Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit d460c11

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 2b1f7b6 + eba7acd commit d460c11

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 3.3.13
4+
current_version = 3.3.14
55
message = Bump version: {current_version} → {new_version} [skip ci]
66

77
[bumpversion:file:setup.py]

ocf_datapipes/config/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def dropout_fraction_valid(cls, v):
156156
class SystemDropoutMixin(Base):
157157
"""Mixin class, to add independent system dropout"""
158158

159-
system_dropout_timedeltas_minutes: List[int] = Field(
159+
system_dropout_timedeltas_minutes: Optional[List[int]] = Field(
160160
None,
161161
description="List of possible minutes before t0 where data availability may start. Must be "
162162
"negative or zero. Each system in a sample is delayed independently from the other by "

ocf_datapipes/load/nwp/providers/excarta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""Excarta Loading"""
2+
23
import numpy as np
34
import pandas as pd
45
import xarray as xr
5-
import datetime
66

77
from ocf_datapipes.load.nwp.providers.utils import open_zarr_paths
88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="ocf_datapipes",
13-
version="3.3.13",
13+
version="3.3.14",
1414
license="MIT",
1515
description="Pytorch Datapipes built for use in Open Climate Fix's forecasting work",
1616
author="Jacob Bieker, Jack Kelly, Peter Dudfield, James Fulton",

0 commit comments

Comments
 (0)