Skip to content

Commit 4025739

Browse files
committed
Update every copyright year and add missing
1 parent 4130e83 commit 4025739

File tree

181 files changed

+323
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+323
-238
lines changed

cascade/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -15,4 +15,4 @@
1515
"""
1616

1717

18-
from .version import __version__, __author__, __author_email__
18+
from .version import __author__, __author_email__, __version__

cascade/base/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
`Traceable` class and other things that are not directly related to other
66
modules.
77
8-
Copyright 2022-2024 Ilia Moiseev
8+
Copyright 2022-2025 Ilia Moiseev
99
1010
Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.
@@ -56,6 +56,7 @@ def raise_not_implemented(class_name: str, name: str) -> NoReturn:
5656
from .config import Config
5757
from .history_handler import HistoryHandler
5858
from .meta_handler import CustomEncoder as JSONEncoder
59-
from .meta_handler import MetaHandler, default_meta_format, supported_meta_formats
59+
from .meta_handler import (MetaHandler, default_meta_format,
60+
supported_meta_formats)
6061
from .serialization import ObjectHandler
6162
from .traceable import Traceable, TraceableOnDisk

cascade/base/cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/base/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/base/history_handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/base/meta_handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/base/serialization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/base/traceable.py

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -26,15 +26,8 @@
2626
import pendulum
2727
from typing_extensions import Literal
2828

29-
from . import (
30-
Config,
31-
Meta,
32-
MetaBlock,
33-
MetaHandler,
34-
MetaIOError,
35-
default_meta_format,
36-
supported_meta_formats,
37-
)
29+
from . import (Config, Meta, MetaBlock, MetaHandler, MetaIOError,
30+
default_meta_format, supported_meta_formats)
3831

3932
DO_NOT_UPDATE = ["created_at"]
4033

cascade/base/utils.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -228,11 +228,12 @@ def migrate_repo_v0_13(path: str) -> None:
228228
path : str
229229
Path to the container to migrate
230230
"""
231+
from tqdm import tqdm
232+
231233
from cascade.base import MetaHandler, MetaIOError
232234
from cascade.lines import ModelLine
233235
from cascade.metrics import Metric
234236
from cascade.repos import Repo, SingleLineRepo
235-
from tqdm import tqdm
236237

237238
def process_metrics(metrics: Dict[str, Any]) -> Tuple[List[Metric], Dict[str, Any]]:
238239
if not isinstance(metrics, dict):

cascade/cli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/artifact.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -23,8 +23,8 @@
2323
from .comment import comment
2424
from .common import create_container
2525
from .desc import desc
26-
from .run import run
2726
from .query import query
27+
from .run import run
2828
from .tag import tag
2929
from .view import view
3030

cascade/cli/comment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/desc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/query.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/tag.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/cli/view.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
The home for Cascade pipeline building tools
55
6-
Copyright 2022-2024 Ilia Moiseev
6+
Copyright 2022-2025 Ilia Moiseev
77
88
Licensed under the Apache License, Version 2.0 (the "License");
99
you may not use this file except in compliance with the License.

cascade/data/apply_modifier.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/bruteforce_cacher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/composer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/concatenator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/cyclic_sampler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/data_card.py

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
"""
2+
Copyright 2022-2025 Ilia Moiseev
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
"""
16+
117
from dataclasses import asdict, dataclass
218
from typing import Any, Dict, List, Optional, Tuple, Union
319

cascade/data/dataset.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
55
You may obtain a copy of the License at
@@ -13,7 +13,8 @@
1313

1414
import warnings
1515
from abc import ABC, abstractmethod
16-
from typing import Any, Generic, Iterable, Iterator, Optional, Sequence, Sized, TypeVar
16+
from typing import (Any, Generic, Iterable, Iterator, Optional, Sequence,
17+
Sized, TypeVar)
1718

1819
from ..base import Meta, Traceable
1920
from .data_card import DataCard

cascade/data/filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/folder_dataset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/pickler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/random_sampler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/range_sampler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/sequential_cacher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/simple_dataloader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/validation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/data/version_assigner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

cascade/docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
project = "cascade"
2323
author = "Ilia Moiseev"
24-
copyright = f"2022-2024, {author}"
24+
copyright = f"2022-2025, {author}"
2525

2626
# The full version, including alpha/beta/rc tags
2727
release = cascade.__version__

cascade/lines/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Contains dataset and model tracking lines
55
6-
Copyright 2022-2024 Ilia Moiseev
6+
Copyright 2022-2025 Ilia Moiseev
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
99
You may obtain a copy of the License at

cascade/lines/data_line.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
55
You may obtain a copy of the License at

cascade/lines/disk_line.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
55
You may obtain a copy of the License at

cascade/lines/line.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright 2022-2024 Ilia Moiseev
2+
Copyright 2022-2025 Ilia Moiseev
33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
55
You may obtain a copy of the License at

0 commit comments

Comments
 (0)