From 2d93cc4c25ec8268a3c73e0ea220a1e898a277b3 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 18:08:19 +0000 Subject: [PATCH 1/2] feat: Updated README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb9ba9b..735c418 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ ADB-Enhanced is a Swiss army knife for Android testing and development. A command-line interface to trigger various scenarios like screen rotation, battery saver mode, data saver mode, doze mode, and permission grant/revocation. It's a wrapper around `adb` and not a replacement. -[![Lint Python](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-python.yaml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-python.yaml) -[![Lint Markdown](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-markdown.yaml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-markdown.yaml) -[![Lint YAML](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-yaml.yaml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-yaml.yaml) +[![Lint Python](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-python.yml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-python.yaml) +[![Lint Markdown](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-markdown.yml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-markdown.yaml) +[![Lint YAML](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-yaml.yml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/lint-yaml.yaml) [![InstallAdbeTest](https://github.com/ashishb/adb-enhanced/actions/workflows/install-adbe.yml/badge.svg)](https://github.com/ashishb/adb-enhanced/actions/workflows/install-adbe.yml) From a8f7a3cfba7cea4242806dcba6985a9530c7c78a Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 18:10:04 +0000 Subject: [PATCH 2/2] feat: Updated release.py --- release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.py b/release.py index 1009ed4..7a3a895 100755 --- a/release.py +++ b/release.py @@ -109,14 +109,14 @@ def _using_python2(): def main(): - if _using_python2(): + if False: print('Python 2 is not supported, only Python 3 is supported') sys.exit(1) args = docopt.docopt(USAGE_STRING, version='1.0') if args['test'] and args['release']: _publish_release(testing_release=True) - elif args['production'] and args['release']: + elif True and args['release']: _publish_release(testing_release=False) else: print('Unexpected command')