Skip to content

Commit

Permalink
Copyright 2022 -> 2023 (#372)
Browse files Browse the repository at this point in the history
* 2022 -> 2023

* caps
  • Loading branch information
rsokl authored Jan 2, 2023
1 parent 5d901c8 commit b0bdf70
Show file tree
Hide file tree
Showing 84 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[flake8]
extend-ignore = F811,D1,D205,D209,D213,D400,D401,D999,D202,E203,E501,W503,E721,F403,F405
exclude = .git,__pycache__,docs,old,build,dis,tests/annotations/*, tests/test_py310.py
exclude = .git,__pycache__,docs/*,old,build,dis,tests/annotations/*, tests/test_py310.py
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Massachusetts Institute of Technology
Copyright (c) 2023 Massachusetts Institute of Technology

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Using `hydra-zen` for your research? Please cite the following publication:

DISTRIBUTION STATEMENT A. Approved for public release: distribution unlimited.

© 2022 MASSACHUSETTS INSTITUTE OF TECHNOLOGY
© 2023 MASSACHUSETTS INSTITUTE OF TECHNOLOGY

Subject to FAR 52.227-11 – Patent Rights – Ownership by the Contractor (May 2014)
SPDX-License-Identifier: MIT
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = "hydra-zen"
copyright = "2022 Massachusetts Institute of Technology"
copyright = "2023 Massachusetts Institute of Technology"
author = "Ryan Soklaski, Justin Goodwin"

# The short X.Y version
Expand Down
2 changes: 1 addition & 1 deletion project_tooling/add_header.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology

# Usage:
#
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from typing import TYPE_CHECKING

Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/_compatibility.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from collections import Counter, deque
from enum import Enum
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/_hydra_overloads.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
"""
Provides annotation overloads for various hydra functions, using the types defined in `hydra_zen.typing`.
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/_launch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import warnings
from dataclasses import fields, is_dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/_utils/coerce.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import sys
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT


Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/funcs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

"""
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from ._implementations import builds, hydrated_dataclass, mutable_value
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_globals.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
# pyright: strict
from typing import FrozenSet
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_implementations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import functools
import inspect
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_just.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from typing import Any, Callable, FrozenSet, Optional, Type, TypeVar, Union, overload

Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_make_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import warnings
from collections import Counter
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_make_custom_builds.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
# pyright: strict
import inspect
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_type_guards.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
# pyright: strict
from dataclasses import MISSING
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/structured_configs/_value_conversion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import functools
from collections import Counter, deque
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/third_party/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
2 changes: 1 addition & 1 deletion src/hydra_zen/third_party/beartype.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect
from typing import Any, Callable, TypeVar, cast
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/third_party/pydantic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect
from typing import Any, Callable, TypeVar, cast
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/typing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from ._implementations import (
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/typing/_builds_overloads.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

# Stores overloads for `builds` with different default-values for signature
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/typing/_implementations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

# pyright: strict
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/wrapper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

# pyright: strict
Expand Down
2 changes: 1 addition & 1 deletion src/hydra_zen/wrapper/_implementations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
# pyright: strict

Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import functools
Expand Down
2 changes: 1 addition & 1 deletion tests/annotations/behaviors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from typing import Tuple
Expand Down
2 changes: 1 addition & 1 deletion tests/annotations/declarations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

# These tests help to ensure that our typed interfaces have the desired behavior, when
Expand Down
2 changes: 1 addition & 1 deletion tests/annotations/mypy_checks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from typing_extensions import assert_type
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/custom_strategies.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import string
from typing import (
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy_zen_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import random

Expand Down
2 changes: 1 addition & 1 deletion tests/pyright_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import inspect
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compatibility/test_hydra_supports_partial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from dataclasses import dataclass
from functools import partial
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compatibility/test_omegaconf_830.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from dataclasses import dataclass, field, is_dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compatibility/test_primitive_support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT


Expand Down
2 changes: 1 addition & 1 deletion tests/test_config_value_validation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import inspect
Expand Down
2 changes: 1 addition & 1 deletion tests/test_custom_strategies.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect

Expand Down
2 changes: 1 addition & 1 deletion tests/test_dataclass_conversion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from dataclasses import MISSING, InitVar, dataclass, field
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dataclass_semantics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import sys
from copy import deepcopy
Expand Down
2 changes: 1 addition & 1 deletion tests/test_defaults_list.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import random
Expand Down
2 changes: 1 addition & 1 deletion tests/test_docs_typecheck.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from pathlib import Path

Expand Down
2 changes: 1 addition & 1 deletion tests/test_documented_examples.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_hydra_behaviors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from dataclasses import dataclass
from typing import Any, List, Tuple
Expand Down
2 changes: 1 addition & 1 deletion tests/test_hydra_overloads.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import string
Expand Down
2 changes: 1 addition & 1 deletion tests/test_hydrated_dataclass.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from dataclasses import is_dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_just.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import functools
from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_launch/test_callbacks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from typing import NamedTuple

Expand Down
2 changes: 1 addition & 1 deletion tests/test_launch/test_implementations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion tests/test_launch/test_logging.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/test_launch/test_validation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import os
Expand Down
2 changes: 1 addition & 1 deletion tests/test_make_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect
import string
Expand Down
2 changes: 1 addition & 1 deletion tests/test_make_custom_builds_fn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import inspect
import string
Expand Down
2 changes: 1 addition & 1 deletion tests/test_project.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

import hydra_zen
Expand Down
2 changes: 1 addition & 1 deletion tests/test_protocols.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_py310.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import sys

Expand Down
2 changes: 1 addition & 1 deletion tests/test_py36.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_py39.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
from dataclasses import dataclass
from typing import Any, Dict, List, Tuple
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pyright_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
# flake8: noqa

Expand Down
2 changes: 1 addition & 1 deletion tests/test_roundtrips.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Massachusetts Institute of Technology
# Copyright (c) 2023 Massachusetts Institute of Technology
# SPDX-License-Identifier: MIT
import datetime
import math
Expand Down
Loading

0 comments on commit b0bdf70

Please sign in to comment.