Skip to content

Commit df6c2db

Browse files
authored
Merge pull request #859 from mit-ll-responsible-ai/update-copyright-2026
Update copyright headers to 2026
2 parents 6c6b813 + 0500d30 commit df6c2db

96 files changed

Lines changed: 99 additions & 99 deletions

File tree

Some content is hidden

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

project_tooling/add_header.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22

33
# Usage:
44
#
@@ -10,8 +10,8 @@
1010
import os.path as path
1111
from pathlib import Path
1212

13-
OLD_HEADER = "# Copyright (c) 2021 Massachusetts Institute of Technology"
14-
NEW_HEADER = "# Copyright (c) 2021 Massachusetts Institute of Technology\n# SPDX-License-Identifier: MIT"
13+
OLD_HEADER = "# Copyright (c) 2025 Massachusetts Institute of Technology"
14+
NEW_HEADER = "# Copyright (c) 2026 Massachusetts Institute of Technology\n# SPDX-License-Identifier: MIT"
1515
EXCLUDED = {"_version.py", "versioneer.py"}
1616

1717

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,14 @@ description = """
317317
Runs test suite against optional 3rd party packages that hydra-zen
318318
provides specialized support for.
319319
"""
320-
install_command = "pip install --upgrade --upgrade-strategy eager {opts} {packages}"
320+
install_command = ["pip", "install", "--upgrade", "--upgrade-strategy", "eager", "{opts}", "{packages}"]
321321
base_python = ["python3.10"]
322322
dependency_groups = ["test", "third-party"]
323323
deps = ["setuptools"]
324324

325325
[tool.tox.env."pydantic-v1-smoketest"]
326326
description = "Ensures that importing pydantic 1.x doesn't break things"
327-
install_command = "pip install --upgrade --upgrade-strategy eager {opts} {packages}"
327+
install_command = ["pip", "install", "--upgrade", "--upgrade-strategy", "eager", "{opts}", "{packages}"]
328328
base_python = ["python3.10"]
329329
dependency_groups = ["test"]
330330
deps = [

src/hydra_zen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33
# flake8: noqa: E402
44

src/hydra_zen/_compatibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33
from collections import Counter, defaultdict, deque
44
from datetime import timedelta

src/hydra_zen/_hydra_overloads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33
"""
44
Provides annotation overloads for various hydra functions, using the types defined in `hydra_zen.typing`.

src/hydra_zen/_launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33
import warnings
44
from collections import UserList

src/hydra_zen/_py314_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33
"""Python 3.14 compatibility patches for Hydra.
44

src/hydra_zen/_utils/coerce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33

44
import inspect

src/hydra_zen/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33

44

src/hydra_zen/funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2025 Massachusetts Institute of Technology
1+
# Copyright (c) 2026 Massachusetts Institute of Technology
22
# SPDX-License-Identifier: MIT
33

44
"""

0 commit comments

Comments
 (0)