From e831e0ade31adc2e696ae9c53df31e4bc2975b34 Mon Sep 17 00:00:00 2001 From: xianyuanjia <56282287+xianyuanjia@users.noreply.github.com> Date: Tue, 11 Aug 2026 10:11:12 -0700 Subject: [PATCH 1/2] v1.5.4 -> fix pipdeptree version fix pipdeptree version to < 4.0.0 to prevent rust compatibility issues --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 315db22..4912b59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mobly-android-partner-tools" -version = "1.5.3" +version = "1.5.4" description = "Command-line utilities used by Android partners to run packaged Mobly tests and upload test results." readme = "README.md" requires-python = ">=3.11" @@ -18,7 +18,7 @@ dependencies = [ "google-cloud-storage", "httplib2", "mobly", - "pipdeptree", + "pipdeptree<4.0.0", "pyyaml", ] From 317672ee5b8f2038485a652c5259509c462da1a7 Mon Sep 17 00:00:00 2001 From: xianyuanjia <56282287+xianyuanjia@users.noreply.github.com> Date: Tue, 11 Aug 2026 10:15:37 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a689c4..310f552 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Mobly Android Partner Tools release history +## 1.5.4 (2026-08-11) + +### Fixes +* Fix `pipdeptree` version to under 4.0.0 to prevent Rust compatibilty issues. + + ## 1.5.3 (2026-07-15) ### Fixes