Skip to content

Commit

Permalink
updated plugin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
omry committed Sep 3, 2020
1 parent 2b1d5b7 commit 358d94e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugins/hydra_colorlog/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
LONG_DESC = fh.read()
setup(
name="hydra-colorlog",
version="1.0.0rc4",
version="1.0.0",
author="Omry Yadan",
author_email="[email protected]",
description="Enables colorlog for Hydra apps",
Expand Down
2 changes: 1 addition & 1 deletion plugins/hydra_joblib_launcher/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
LONG_DESC = fh.read()
setup(
name="hydra-joblib-launcher",
version="1.1.0rc4",
version="1.1.0",
author="Jan-Matthis Lueckmann, Omry Yadan",
author_email="[email protected], [email protected]",
description="Joblib Launcher for Hydra apps",
Expand Down
2 changes: 1 addition & 1 deletion plugins/hydra_rq_launcher/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
LONG_DESC = fh.read()
setup(
name="hydra-rq-launcher",
version="1.0.0rc4",
version="1.0.0",
author="Jan-Matthis Lueckmann, Omry Yadan",
author_email="[email protected], [email protected]",
description="Redis Queue (RQ) Launcher for Hydra apps",
Expand Down
2 changes: 1 addition & 1 deletion plugins/hydra_submitit_launcher/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
LONG_DESC = fh.read()
setup(
name="hydra-submitit-launcher",
version="1.0.0rc6",
version="1.0.0",
author="Jeremy Rapin, Jieru Hu, Omry Yadan",
author_email="[email protected], [email protected], [email protected]",
description="Submitit Launcher for Hydra apps",
Expand Down
2 changes: 1 addition & 1 deletion tools/release/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def build_package(cfg: Config, pkg_path: str) -> None:
prev = os.getcwd()
os.chdir(pkg_path)
log.info(f"Building {get_package_info('.').name}")
shutil.rmtree("dist")
shutil.rmtree("dist", ignore_errors=True)
get_run_output(
cmd=["setup.py", "build", *cfg.build_targets], allow_warnings=True
)
Expand Down

0 comments on commit 358d94e

Please sign in to comment.