-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix hydra plugin installation (#93)
* build: Refactor hydra plugin to be compatible with poetry * build: Refactor description * build: Update version * refactor: Fix typo in filename * build: Include quadra plugins to the build
- Loading branch information
1 parent
d2aa68c
commit 89849e3
Showing
6 changed files
with
48 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "quadra" | ||
version = "1.5.0" | ||
version = "1.5.1" | ||
description = "Deep Learning experiment orchestration library" | ||
authors = [ | ||
"Federico Belotti <[email protected]>", | ||
|
@@ -25,6 +25,7 @@ classifiers = [ | |
] | ||
homepage = "https://orobix.github.io/quadra" | ||
repository = "https://github.com/orobix/quadra" | ||
packages = [{ include = "quadra" }, { include = "quadra_hydra_plugin" }] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
@@ -36,7 +37,7 @@ quadra = "quadra.main:main" | |
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.11" | ||
poetry = "1.7.1" | ||
|
||
hydra-plugins = { path = "./quadra_hydra_plugin" } | ||
# TODO: We could support previous torch version using mutually exclusive python version but it's bad... | ||
# TODO: Right now it seems that poetry will download every kind of possible dependency from cu116 | ||
# To make it faster we could hardcode the correct version of the dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "1.5.0" | ||
__version__ = "1.5.1" | ||
|
||
|
||
def get_version(): | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[tool.poetry] | ||
name = "hydra_plugins" | ||
version = "1.0.0" | ||
description = "Hydra plugin allowing the discovery of external configurations" | ||
authors = [ | ||
"Federico Belotti <[email protected]>", | ||
"Silvia Bianchetti <[email protected]>", | ||
"Refik Can Malli <[email protected]>", | ||
"Lorenzo Mammana <[email protected]>", | ||
"Alessandro Polidori <[email protected]>", | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.11" | ||
poetry = "1.7.1" |