Skip to content

Commit 71bf20b

Browse files
authored
chore: update package versions to 0.4.5 and remove deprecated requirements (microsoft#5280)
1 parent 3fcb6e6 commit 71bf20b

File tree

7 files changed

+18
-1221
lines changed

7 files changed

+18
-1221
lines changed

python/packages/autogen-agentchat/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-agentchat"
7-
version = "0.4.4"
7+
version = "0.4.5"
88
license = {file = "LICENSE-CODE"}
99
description = "AutoGen agents and teams library"
1010
readme = "README.md"
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.4.4",
18+
"autogen-core==0.4.5",
1919
]
2020

2121
[tool.ruff]

python/packages/autogen-core/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-core"
7-
version = "0.4.4"
7+
version = "0.4.5"
88
license = {file = "LICENSE-CODE"}
99
description = "Foundational interfaces and agent runtime implementation for AutoGen"
1010
readme = "README.md"
@@ -69,7 +69,7 @@ dev = [
6969
"pygments",
7070
"sphinxext-rediraffe",
7171

72-
"autogen_ext==0.4.4",
72+
"autogen_ext==0.4.5",
7373

7474
# Documentation tooling
7575
"diskcache",

python/packages/autogen-ext/pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-ext"
7-
version = "0.4.4"
7+
version = "0.4.5"
88
license = {file = "LICENSE-CODE"}
99
description = "AutoGen extensions library"
1010
readme = "README.md"
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.4.4",
18+
"autogen-core==0.4.5",
1919
]
2020

2121
[project.optional-dependencies]
@@ -28,24 +28,24 @@ azure = [
2828
docker = ["docker~=7.0"]
2929
openai = ["openai>=1.52.2", "tiktoken>=0.8.0", "aiofiles"]
3030
file-surfer = [
31-
"autogen-agentchat==0.4.4",
31+
"autogen-agentchat==0.4.5",
3232
"markitdown>=0.0.1a2",
3333
]
3434
graphrag = ["graphrag>=1.0.1"]
3535
web-surfer = [
36-
"autogen-agentchat==0.4.4",
36+
"autogen-agentchat==0.4.5",
3737
"playwright>=1.48.0",
3838
"pillow>=11.0.0",
3939
"markitdown>=0.0.1a2",
4040
]
4141
magentic-one = [
42-
"autogen-agentchat==0.4.4",
42+
"autogen-agentchat==0.4.5",
4343
"markitdown>=0.0.1a2",
4444
"playwright>=1.48.0",
4545
"pillow>=11.0.0",
4646
]
4747
video-surfer = [
48-
"autogen-agentchat==0.4.4",
48+
"autogen-agentchat==0.4.5",
4949
"opencv-python>=4.5",
5050
"ffmpeg-python",
5151
"openai-whisper",

python/samples/core_distributed-group-chat/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ This example runs a gRPC server using [GrpcWorkerAgentRuntimeHost](../../src/aut
77
### Setup Python Environment
88

99
1. Create a virtual environment and activate it. (e.g. `python3.12 -m venv .venv && source .venv/bin/activate`)
10-
2. Run `uv pip install -r requirements.txt` to install compiled set of dependencies.
10+
2. Install dependencies.
11+
12+
```bash
13+
pip install "autogen-ext[openai,azure,chainlit,rich,pyyaml]"
14+
```
1115

1216
### General Configuration
1317

python/samples/core_distributed-group-chat/requirements.in

-5
This file was deleted.

python/samples/core_distributed-group-chat/requirements.txt

-1,202
This file was deleted.

python/uv.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)