diff --git a/HISTORY.md b/HISTORY.md index ca9051ad5f..47297f7a3d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,8 @@ ## 0.11.2 (2020-03-17) +- Fixes a package import issue +- Fixes an issue where `AgentLoop` did not teardown properly under certain conditions - Fixes a bug in testing tools - Fixes a bug where plugins are not loaded after installation in `MultiAgentManager` - Adds unit tests for weather, thermometer and car park skills diff --git a/scripts/update_package_versions.py b/scripts/update_package_versions.py index b996cc008f..fd62505db3 100644 --- a/scripts/update_package_versions.py +++ b/scripts/update_package_versions.py @@ -269,7 +269,9 @@ def get_all_protocol_spec_ids() -> Set[PublicId]: :return: a set of package ids. """ result: Set[PublicId] = set() - protocol_packages = set(PACKAGES_DIR.rglob("**/**/protocols/**")) - set(PACKAGES_DIR.rglob("**/**/protocols")) + protocol_packages = set(PACKAGES_DIR.rglob("**/**/protocols/**")) - set( + PACKAGES_DIR.rglob("**/**/protocols") + ) for protocol_package_path in protocol_packages: content = get_protocol_specification_from_readme(protocol_package_path) spec_id = get_protocol_specification_id_from_specification(content)