-
Notifications
You must be signed in to change notification settings - Fork 170
chore(deps): Update python uv dependencies #430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ name = "autoglm-gui" | |
| version = "1.5.19" | ||
| description = "Web GUI for AutoGLM Phone Agent - AI-powered Android automation" | ||
| readme = "README.md" | ||
| requires-python = ">=3.11" | ||
| requires-python = ">=3.14.6" | ||
| license = "Apache-2.0" | ||
| authors = [{ name = "suyiiyii" }] | ||
| keywords = ["autoglm", "phone-agent", "android", "automation", "ai", "gui"] | ||
|
|
@@ -22,25 +22,25 @@ classifiers = [ | |
| "Topic :: Software Development :: Libraries :: Python Modules", | ||
| ] | ||
| dependencies = [ | ||
| "apscheduler>=3.10.0,<4.0.0", # Scheduled task scheduler | ||
| "fastapi>=0.124.0", | ||
| "fastmcp>=2.0.0", | ||
| "apscheduler>=3.11.3,<4.0.0", # Scheduled task scheduler | ||
| "fastapi>=0.140.0", | ||
| "fastmcp>=2.14.7", | ||
| "httpx[socks]>=0.28.1", | ||
| "jinja2>=3.1.0", # Required by MAI agent for prompt templating | ||
| "jinja2>=3.1.6", # Required by MAI agent for prompt templating | ||
| "loguru>=0.7.3", | ||
| "numpy>=1.24.0", # Required by MAI agent | ||
| "openai>=2.9.0", | ||
| "openai-agents>=0.6.4", | ||
| "pillow>=11.3.0", | ||
| "prometheus-client>=0.21.0", | ||
| "python-socketio>=5.11.0", | ||
| "numpy>=1.26.4", # Required by MAI agent | ||
| "openai>=2.48.0", | ||
| "openai-agents>=0.18.3", | ||
| "pillow>=12.3.0", | ||
| "prometheus-client>=0.26.0", | ||
| "python-socketio>=5.16.3", | ||
| "pyyaml>=6.0.3", | ||
| "uvicorn[standard]>=0.38.0", | ||
| "zeroconf>=0.148.0", | ||
| "uvicorn[standard]>=0.51.0", | ||
| "zeroconf>=0.150.0", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| droidrun = ["droidrun>=0.4.0"] | ||
| droidrun = ["droidrun>=0.6.12"] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
|
|
||
| [project.urls] | ||
| Homepage = "https://github.com/suyiiyii/AutoGLM-GUI" | ||
|
|
@@ -68,9 +68,9 @@ allow-direct-references = true | |
|
|
||
| [dependency-groups] | ||
| dev = [ | ||
| "pyinstaller>=6.17.0", | ||
| "pyright>=1.1.407", | ||
| "pytest>=9.0.2", | ||
| "pyinstaller>=6.21.0", | ||
| "pyright>=1.1.411", | ||
| "pytest>=9.1.1", | ||
| "pytest-cov>=7.1.0", | ||
| "ruff>=0.14.9", | ||
| "ruff>=0.16.0", | ||
| ] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this floor, every documented/CI-supported environment below Python 3.14.6 can no longer install the project:
.github/actions/setup-python/action.ymlstill defaults to 3.11 and.github/workflows/integration-tests.ymlexplicitly runs 3.11, 3.12, 3.13, and 3.14 beforeuv sync --frozen. I also checked this checkout with the available Python 3.14.4, anduv sync --frozen --dry-runfails withNo interpreter found for Python >=3.14.6, so the CI matrix and normal local setup are blocked unless all runners are updated to an exact 3.14.6+ interpreter first.Useful? React with 👍 / 👎.