Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
"modelscope>=1.35.0",
"huggingface_hub>=0.20.0",
"pillow>=10.0.0",
"agent-client-protocol>=0.9.0",
"agent-client-protocol>=0.9.0,<0.11.0",
"psutil>=6.0.0",
"openai>=2.0.0,<=2.33.0",
# anyio 4.13.0: _deliver_cancellation busy-loop / getpid storm (QwenPaw#2632)
Expand Down
2 changes: 1 addition & 1 deletion scripts/pack-tauri/build_pyinstaller.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Write-Host "Project dependencies installed with full extras" -ForegroundColor Gr
if (-not (Test-PythonImport "from acp import Agent")) {
Write-Host "Fixing agent-client-protocol namespace..."
Uninstall-PythonPackage "acp"
Install-PythonPackages -Packages @("agent-client-protocol")
Install-PythonPackages -Packages @("agent-client-protocol>=0.9.0,<0.11.0")
Write-Host "agent-client-protocol installed" -ForegroundColor Green
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/pack-tauri/build_pyinstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ echo "Project dependencies installed with full extras"
if ! "$PYTHON_BIN" -c "from acp import Agent" 2> /dev/null; then
echo "Fixing agent-client-protocol namespace..."
uninstall_python_package acp
install_python_packages agent-client-protocol
install_python_packages "agent-client-protocol>=0.9.0,<0.11.0"
fi
echo ""

Expand Down
2 changes: 1 addition & 1 deletion src/qwenpaw/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "1.1.12.post2"
__version__ = "1.1.12.post3"
Loading