From 31249ce2efe8792a30612e1569eb7d60d2ad02dd Mon Sep 17 00:00:00 2001 From: Myungjin Lee Date: Thu, 19 Dec 2024 15:22:30 -0800 Subject: [PATCH] chore: miscellanous update The maintainers' email address is correctly updated. A debugging message was removed since it can be annoying when the function of checking a world's status is called frequently. --- CODE_OF_CONDUCT.md | 2 +- multiworld/communicator.py | 1 - pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 3f258cf..eb6b970 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -66,7 +66,7 @@ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. -[conduct-email]: mailto:multiworld-maintainers@cisco.com@cisco.com +[conduct-email]: mailto:multiworld-maintainers@cisco.com ## Attribution diff --git a/multiworld/communicator.py b/multiworld/communicator.py index b130e74..f60ca8d 100644 --- a/multiworld/communicator.py +++ b/multiworld/communicator.py @@ -109,7 +109,6 @@ def is_broken(self, world_name: str) -> bool: Returns: A boolean value to indicate whether a world is broken or not. """ - logger.debug(f"check if world {world_name} is broken") return self._broken_world.get(world_name, True) def _set_functions(self, world_name: str, backend: str) -> None: diff --git a/pyproject.toml b/pyproject.toml index dbd35ac..050adf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name="multiworld" dynamic = ["version"] -authors = [{ name="Multiworld Maintainers", email="multiworld-github-owners@cisco.com" }] +authors = [{ name="Multiworld Maintainers", email="multiworld-maintainers@cisco.com" }] description="This package is a python library to support multiple communication groups for pytorch's distribted package" readme = "README.md" requires-python = ">=3.9"