diff --git a/pyproject.toml b/pyproject.toml index 1db3df5..89c5c62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,9 +52,7 @@ profile = "black" [tool.pytest.ini_options] minversion = "8.1" -addopts = "--doctest-modules" testpaths = [ - "src", "tests", ] consider_namespace_packages = true diff --git a/src/earthkit/time/climatology.py b/src/earthkit/time/climatology.py index b26e38c..2a6ab7c 100644 --- a/src/earthkit/time/climatology.py +++ b/src/earthkit/time/climatology.py @@ -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 @dataclass diff --git a/src/earthkit/time/sequence.py b/src/earthkit/time/sequence.py index 0220919..498ef50 100644 --- a/src/earthkit/time/sequence.py +++ b/src/earthkit/time/sequence.py @@ -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,