From b25765958460baa8c2bfc3ffaed003c5ad0ad1b3 Mon Sep 17 00:00:00 2001 From: Sakthi Murugan C <168261877+Sakth1@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:08:30 +0530 Subject: [PATCH 1/2] updated pyqt link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed2e4bd2..2a337447 100644 --- a/README.md +++ b/README.md @@ -567,7 +567,7 @@ _Libraries for working with graphical user interface applications._ - [NiceGui](https://github.com/zauberzeug/nicegui) - It is great for micro web apps, dashboards, robotics projects, smart home solutions and similar use cases. You can also use it in development, for example when tweaking/configuring a machine learning algorithm or tuning motor controllers. - [pyglet](https://github.com/pyglet/pyglet) - A cross-platform windowing and multimedia library for Python. - [PyGObject](https://pygobject.readthedocs.io/) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). -- [PyQt](https://doc.qt.io/qtforpython/) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. +- [PyQt](https://www.riverbankcomputing.com/static/Docs/PyQt6/) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. - [pywebview](https://github.com/r0x0r/pywebview/) - A lightweight cross-platform native wrapper around a webview component. - [Tkinter](https://wiki.python.org/moin/TkInter) - Tkinter is Python's de-facto standard GUI package. - [Toga](https://github.com/pybee/toga) - A Python native, OS native GUI toolkit. From e858779e03254a15c8829db6a6dfae85ffaaece2 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 9 Jan 2026 14:32:51 +0800 Subject: [PATCH 2/2] fix: quote if condition to fix YAML parsing error The colon in 'DECISION: REJECT' was causing YAML parsing issues. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/claude-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml index 1a5c4068..33a876bd 100644 --- a/.github/workflows/claude-pr-review.yml +++ b/.github/workflows/claude-pr-review.yml @@ -49,7 +49,7 @@ jobs: DECISION: REJECT or DECISION: PASS - name: Close PR if rejected - if: contains(steps.claude-review.outputs.response, 'DECISION: REJECT') + if: "contains(steps.claude-review.outputs.response, 'DECISION: REJECT')" env: GH_TOKEN: ${{ github.token }} run: |