Skip to content

Commit

Permalink
[fix] Add hydra plugin in the setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tamohannes committed Jun 27, 2024
1 parent d5229e9 commit 5e9f9a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hydra_plugins/urartu_plugin/urartu_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
registry_paths = Registry.get_module_paths()


class urartuPlugin(SearchPathPlugin):
class UrartuPlugin(SearchPathPlugin):
def manipulate_search_path(self, search_path: ConfigSearchPath) -> None:
for registry_path in registry_paths:
search_path.prepend(provider="urartu", path=f"{registry_path}//configs")
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,8 @@
"console_scripts": [
"urartu=urartu.__init__:main",
],
"hydra.plugins": [
"urartu_plugin = hydra_plugins.urartu_plugin.urartu_plugin:UrartuPlugin",
],
},
)
2 changes: 1 addition & 1 deletion urartu/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.7
2.0.8

0 comments on commit 5e9f9a9

Please sign in to comment.