Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ profile = "black"

[tool.pytest.ini_options]
minversion = "8.1"
addopts = "--doctest-modules"
testpaths = [
"src",
"tests",
]
consider_namespace_packages = true
Expand Down
4 changes: 2 additions & 2 deletions src/earthkit/time/climatology.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from datetime import date, timedelta
from typing import Iterator, Union

from .sequence import Sequence, YearlySequence
from .utilities import merge_sorted
from earthkit.time.sequence import Sequence, YearlySequence
from earthkit.time.utilities import merge_sorted
Comment on lines +7 to +8


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/earthkit/time/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from datetime import date, timedelta
from typing import Container, Dict, Iterable, Iterator, Optional, Tuple, Type, Union

from .calendar import (
from earthkit.time.calendar import (
MonthInYear,
Weekday,
day_exists,
Expand Down
Loading