Skip to content

Commit ac3db35

Browse files
fix workflows and several versions
1 parent f2182ab commit ac3db35

File tree

10 files changed

+279
-249
lines changed

10 files changed

+279
-249
lines changed

.github/workflows/python-dependency-range-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
exit 0
189189
fi
190190
191-
git commit -m "chore(python): update dependency ranges"
191+
git commit -m "chore: update dependency ranges"
192192
git push --force-with-lease --set-upstream origin "${BRANCH}"
193193
echo "has_changes=true" >> "$GITHUB_OUTPUT"
194194

.github/workflows/python-dev-dependency-upgrade.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ jobs:
5151
fi
5252
5353
git commit -F- <<'EOF'
54-
chore(python): upgrade dev dependencies
55-
56-
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
54+
Python: chore: upgrade dev dependencies
5755
EOF
5856
git push --force-with-lease --set-upstream origin "${BRANCH}"
5957
echo "has_changes=true" >> "$GITHUB_OUTPUT"
@@ -62,7 +60,7 @@ jobs:
6260
if: steps.commit_updates.outputs.has_changes == 'true'
6361
run: |
6462
BRANCH="automation/python-dev-dependency-updates"
65-
PR_TITLE="chore(python): upgrade dev dependencies"
63+
PR_TITLE="Python: chore: upgrade dev dependencies"
6664
PR_BODY_FILE="$(mktemp)"
6765
6866
cat > "${PR_BODY_FILE}" <<'EOF'

python/packages/ag-ui/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525
"agent-framework-core>=1.0.0rc4",
2626
"ag-ui-protocol==0.1.13",
2727
"fastapi>=0.115.0,<0.133.1",
28-
"uvicorn>=0.30.0,<0.30.6"
28+
"uvicorn[standard]>=0.30.0,<0.42.0"
2929
]
3030

3131
[project.optional-dependencies]

python/packages/chatkit/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424
dependencies = [
2525
"agent-framework-core>=1.0.0rc4",
26-
"openai-chatkit>=1.4.0,<2.0.0",
26+
"openai-chatkit>=1.4.1,<2.0.0",
2727
]
2828

2929
[tool.uv]

python/packages/claude/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525
dependencies = [
2626
"agent-framework-core>=1.0.0rc4",
27-
"claude-agent-sdk>=0.1.25,<0.1.26",
27+
"claude-agent-sdk>=0.1.36,<0.1.49",
2828
]
2929

3030
[tool.uv]

python/packages/declarative/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424
dependencies = [
2525
"agent-framework-core>=1.0.0rc4",
26-
"powerfx>=0.0.31,<0.0.32; python_version < '3.14'",
26+
"powerfx>=0.0.32,<0.0.35; python_version < '3.14'",
2727
"pyyaml>=6.0,<7.0",
2828
]
2929
[dependency-groups]

python/packages/devui/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ classifiers = [
2424
]
2525
dependencies = [
2626
"agent-framework-core>=1.0.0rc4",
27-
"fastapi>=0.104.0,<0.133.1",
28-
"uvicorn[standard]>=0.24.0,<0.24.1",
29-
"python-dotenv>=1.0.0,<2",
27+
"fastapi>=0.115.0,<0.133.1",
28+
"uvicorn[standard]>=0.30.0,<0.42.0"
3029
]
3130

3231
[project.optional-dependencies]

python/packages/redis/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
dependencies = [
2626
"agent-framework-core>=1.0.0rc4",
2727
"redis>=6.4.0,<7.2.1",
28-
"redisvl>=0.8.2,<0.8.3",
28+
"redisvl>=0.11.0,<0.16",
2929
"numpy>=2.2.6,<3"
3030
]
3131

python/pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,6 @@ samples-lint = "ruff check samples --fix --exclude samples/autogen-migration,sam
208208
pyright = "python scripts/run_tasks_in_packages_if_exists.py pyright"
209209
mypy = "python scripts/run_tasks_in_packages_if_exists.py mypy"
210210
typing = "python scripts/run_tasks_in_packages_if_exists.py mypy pyright"
211-
validate-dependency-ranges = "python scripts/validate_dependency_ranges.py"
212-
validate-dependency-lower-bounds = "python scripts/validate_dependency_lower_bounds.py"
213211
samples-syntax.shell = "pyright -p $(python -c \"import sys; print('pyrightconfig.samples.py310.json' if sys.version_info < (3,11) else 'pyrightconfig.samples.json')\") --warnings"
214212
samples-syntax.interpreter = "posix"
215213
# cleaning

python/uv.lock

Lines changed: 269 additions & 234 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)