Skip to content

Commit 142756f

Browse files
authored
Merge pull request #567 from mit-ll-responsible-ai/favicon
fix favicon
2 parents 25b3721 + e812bf1 commit 142756f

3 files changed

Lines changed: 7 additions & 17 deletions

File tree

docs/source/changes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ chronological order. All previous releases should still be available on pip.
1111
.. _v0.12.0:
1212

1313
----------------------
14-
0.12.0rc2 - 2023-11-23
14+
0.12.0rc3 - 2023-11-02
1515
----------------------
1616

1717

@@ -64,9 +64,9 @@ For more details and examples, see :pull:`553`.
6464
6565
Improvements
6666
------------
67-
- :func:`~hydra_zen.BuildsFn` was introduced to permit customizable auto-config and type-refinement support in config-creation functions. See :pull:`553`.
67+
- :class:`~hydra_zen.BuildsFn` was introduced to permit customizable auto-config and type-refinement support in config-creation functions. See :pull:`553`.
6868
- :func:`~hydra_zen.builds` and :func:`~hydra_zen.make_custom_builds_fn` now accept a `zen_exclude` field for excluding parameters from auto-population, either by name or by pattern. See :pull:`558`.
69-
- :func:`~hydra_zen.builds` and :func:`~hydra_zen.just` can now configure static methods. Previously they incorrect import path would be found. See :pull:`566`
69+
- :func:`~hydra_zen.builds` and :func:`~hydra_zen.just` can now configure static methods. Previously the incorrect ``_target_`` would be resolved. See :pull:`566`
7070
- Adds formal support for Python 3.12. See :pull:`555`
7171
7272

docs/source/conf.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"sphinx_copybutton",
4545
"sphinx_design",
4646
"sphinx_codeautolink",
47+
"sphinx_favicon",
4748
]
4849

4950
autosummary_generate = False
@@ -111,16 +112,8 @@
111112
html_static_path = ["_static"]
112113

113114
favicons = [
114-
{
115-
"rel": "icon",
116-
"sizes": "32x32",
117-
"href": "hydra_zen_favicon_32x32.png",
118-
},
119-
{
120-
"rel": "icon",
121-
"sizes": "64x64",
122-
"href": "hydra_zen_favicon_64x64.png",
123-
},
115+
"hydra_zen_favicon_32x32.png",
116+
"hydra_zen_favicon_64x64.png",
124117
]
125118

126119

src/hydra_zen/structured_configs/_implementations.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
ZenConvert,
8080
ZenWrappers,
8181
)
82-
from hydra_zen.typing._builds_overloads import StdBuilds
8382
from hydra_zen.typing._implementations import (
8483
AllConvert,
8584
AnyBuilds,
@@ -3152,9 +3151,7 @@ class DefaultBuilds(BuildsFn[SupportedPrimitive]):
31523151
pass
31533152

31543153

3155-
builds: StdBuilds[SupportedPrimitive] = cast(
3156-
StdBuilds[SupportedPrimitive], DefaultBuilds("builds").builds
3157-
)
3154+
builds: Final = DefaultBuilds.builds
31583155

31593156

31603157
@dataclass(unsafe_hash=True)

0 commit comments

Comments
 (0)