From 37b44edfc510ee37a5203a589546e64a2f8b6a37 Mon Sep 17 00:00:00 2001 From: rsokl Date: Wed, 1 Jan 2025 16:30:54 +0000 Subject: [PATCH] deploy: b36b5de93570212e40ef385cf8dac1364a0a7f65 --- docs/_modules/hydra_zen/_hydra_overloads.html | 2 +- docs/_modules/hydra_zen/_launch.html | 2 +- .../hydra_zen/structured_configs/_implementations.html | 8 ++++---- docs/_modules/hydra_zen/structured_configs/_just.html | 2 +- .../hydra_zen/structured_configs/_make_config.html | 2 +- .../hydra_zen/structured_configs/_make_custom_builds.html | 2 +- .../hydra_zen/structured_configs/_type_guards.html | 2 +- docs/_modules/hydra_zen/third_party/beartype.html | 2 +- docs/_modules/hydra_zen/third_party/pydantic.html | 2 +- docs/_modules/hydra_zen/typing/_implementations.html | 2 +- docs/_modules/hydra_zen/wrapper/_implementations.html | 2 +- docs/generated/hydra_zen.builds.html | 2 +- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/_modules/hydra_zen/_hydra_overloads.html b/docs/_modules/hydra_zen/_hydra_overloads.html index 31a7ae23d..0171e937d 100644 --- a/docs/_modules/hydra_zen/_hydra_overloads.html +++ b/docs/_modules/hydra_zen/_hydra_overloads.html @@ -384,7 +384,7 @@

Source code for hydra_zen._hydra_overloads

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 """
 Provides annotation overloads for various hydra functions, using the types defined in `hydra_zen.typing`.
diff --git a/docs/_modules/hydra_zen/_launch.html b/docs/_modules/hydra_zen/_launch.html
index cd1504b46..e572a8243 100644
--- a/docs/_modules/hydra_zen/_launch.html
+++ b/docs/_modules/hydra_zen/_launch.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen._launch

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 import warnings
 from collections import UserList
diff --git a/docs/_modules/hydra_zen/structured_configs/_implementations.html b/docs/_modules/hydra_zen/structured_configs/_implementations.html
index 33b681b1f..bf895d5c0 100644
--- a/docs/_modules/hydra_zen/structured_configs/_implementations.html
+++ b/docs/_modules/hydra_zen/structured_configs/_implementations.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.structured_configs._implementations

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 import functools
 import inspect
@@ -1454,7 +1454,7 @@ 

Source code for hydra_zen.structured_configs._implementations

if cast in {list, tuple, dict}: x = cls._sanitize_collection(x, convert_dataclass=settings["dataclass"]) - return field(default_factory=lambda: cast(x)) + return field(default_factory=lambda: cast(x)) # type: ignore return field(default_factory=lambda: x)
@@ -2381,7 +2381,7 @@

Source code for hydra_zen.structured_configs._implementations

>>> ChildConf = builds(dict, b=-2, c=-3, builds_bases=(ParentConf,)) >>> instantiate(ChildConf) {'a': 1, 'b': -2, 'c': -3} - >>> issubclass(ChildConf, ParentConf) + >>> issubclass(ChildConf, ParentConf) # type: ignore True .. _builds-validation: @@ -3001,7 +3001,7 @@

Source code for hydra_zen.structured_configs._implementations

if is_dataclass(target): _fields = {f.name: f for f in fields(target)} else: - _fields = target.__fields__ + _fields = target.__fields__ # type: ignore _update = {} for name, param in signature_params.items(): if name not in _fields: diff --git a/docs/_modules/hydra_zen/structured_configs/_just.html b/docs/_modules/hydra_zen/structured_configs/_just.html index 4c44de48f..006c081aa 100644 --- a/docs/_modules/hydra_zen/structured_configs/_just.html +++ b/docs/_modules/hydra_zen/structured_configs/_just.html @@ -384,7 +384,7 @@

Source code for hydra_zen.structured_configs._just

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 
 from typing import Any, Callable, FrozenSet, Optional, Type, TypeVar, Union, overload
diff --git a/docs/_modules/hydra_zen/structured_configs/_make_config.html b/docs/_modules/hydra_zen/structured_configs/_make_config.html
index adb6caa5d..144613200 100644
--- a/docs/_modules/hydra_zen/structured_configs/_make_config.html
+++ b/docs/_modules/hydra_zen/structured_configs/_make_config.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.structured_configs._make_config

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 from typing import Optional, Tuple, Type, Union
 
diff --git a/docs/_modules/hydra_zen/structured_configs/_make_custom_builds.html b/docs/_modules/hydra_zen/structured_configs/_make_custom_builds.html
index b23a1d808..f31c30408 100644
--- a/docs/_modules/hydra_zen/structured_configs/_make_custom_builds.html
+++ b/docs/_modules/hydra_zen/structured_configs/_make_custom_builds.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.structured_configs._make_custom_builds

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 # pyright: strict
 import inspect
diff --git a/docs/_modules/hydra_zen/structured_configs/_type_guards.html b/docs/_modules/hydra_zen/structured_configs/_type_guards.html
index 47af5d431..9d72771d0 100644
--- a/docs/_modules/hydra_zen/structured_configs/_type_guards.html
+++ b/docs/_modules/hydra_zen/structured_configs/_type_guards.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.structured_configs._type_guards

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 # pyright: strict
 from dataclasses import MISSING
diff --git a/docs/_modules/hydra_zen/third_party/beartype.html b/docs/_modules/hydra_zen/third_party/beartype.html
index a2aa83c33..f5d0e3fbb 100644
--- a/docs/_modules/hydra_zen/third_party/beartype.html
+++ b/docs/_modules/hydra_zen/third_party/beartype.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.third_party.beartype

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 import inspect
 from typing import Any, Callable, TypeVar, cast
diff --git a/docs/_modules/hydra_zen/third_party/pydantic.html b/docs/_modules/hydra_zen/third_party/pydantic.html
index 6b47a1bee..d5fc4422f 100644
--- a/docs/_modules/hydra_zen/third_party/pydantic.html
+++ b/docs/_modules/hydra_zen/third_party/pydantic.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.third_party.pydantic

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 # pyright: reportUnnecessaryTypeIgnoreComment=false
 import functools
diff --git a/docs/_modules/hydra_zen/typing/_implementations.html b/docs/_modules/hydra_zen/typing/_implementations.html
index b5be25805..4a7d1c48f 100644
--- a/docs/_modules/hydra_zen/typing/_implementations.html
+++ b/docs/_modules/hydra_zen/typing/_implementations.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.typing._implementations

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 
 # pyright: strict
diff --git a/docs/_modules/hydra_zen/wrapper/_implementations.html b/docs/_modules/hydra_zen/wrapper/_implementations.html
index 4eabd7453..df2dbca44 100644
--- a/docs/_modules/hydra_zen/wrapper/_implementations.html
+++ b/docs/_modules/hydra_zen/wrapper/_implementations.html
@@ -384,7 +384,7 @@
                 

Source code for hydra_zen.wrapper._implementations

-# Copyright (c) 2024 Massachusetts Institute of Technology
+# Copyright (c) 2025 Massachusetts Institute of Technology
 # SPDX-License-Identifier: MIT
 # pyright: strict, reportUnnecessaryTypeIgnoreComment = true, reportUnnecessaryIsInstance = false
 
diff --git a/docs/generated/hydra_zen.builds.html b/docs/generated/hydra_zen.builds.html
index 88ca6b5ab..a21c18245 100644
--- a/docs/generated/hydra_zen.builds.html
+++ b/docs/generated/hydra_zen.builds.html
@@ -653,7 +653,7 @@ 

hydra_zen.builds>>> ChildConf = builds(dict, b=-2, c=-3, builds_bases=(ParentConf,)) >>> instantiate(ChildConf) {'a': 1, 'b': -2, 'c': -3} ->>> issubclass(ChildConf, ParentConf) +>>> issubclass(ChildConf, ParentConf) # type: ignore True