Skip to content

Commit 27c3d3b

Browse files
authored
Update version 0.7.2 (#6895)
1 parent ec5da1e commit 27c3d3b

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,11 @@ jobs:
207207
with:
208208
python-version: "3.11"
209209
- run: |
210-
uv sync --locked --all-extras
210+
uv venv --python=3.11
211211
source .venv/bin/activate
212+
# Only pin version to ensure compatibility
213+
uv pip install -U 'setuptools-scm>=8.1'
214+
uv sync --locked --all-extras
212215
poe --directory ${{ matrix.version.poe-dir }} docs-build
213216
mkdir -p docs-staging/${{ matrix.version.dest-dir }}/
214217
mv ${{ matrix.version.poe-dir }}/docs/build/* docs-staging/${{ matrix.version.dest-dir }}/

python/packages/autogen-agentchat/pyproject.toml

Lines changed: 2 additions & 2 deletions
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.7.1"
7+
version = "0.7.2"
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.7.1",
18+
"autogen-core==0.7.2",
1919
]
2020

2121
[tool.ruff]

python/packages/autogen-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
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.7.1"
7+
version = "0.7.2"
88
license = {file = "LICENSE-CODE"}
99
description = "Foundational interfaces and agent runtime implementation for AutoGen"
1010
readme = "README.md"

python/packages/autogen-ext/pyproject.toml

Lines changed: 6 additions & 6 deletions
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.7.1"
7+
version = "0.7.2"
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.7.1",
18+
"autogen-core==0.7.2",
1919
]
2020

2121
[project.optional-dependencies]
@@ -32,7 +32,7 @@ docker = ["docker~=7.0", "asyncio_atexit>=1.0.1"]
3232
ollama = ["ollama>=0.4.7", "tiktoken>=0.8.0"]
3333
openai = ["openai>=1.93", "tiktoken>=0.8.0", "aiofiles"]
3434
file-surfer = [
35-
"autogen-agentchat==0.7.1",
35+
"autogen-agentchat==0.7.2",
3636
"magika>=0.6.1rc2",
3737
"markitdown[all]~=0.1.0a3",
3838
]
@@ -50,21 +50,21 @@ mem0-local = [
5050
"chromadb>=1.0.0"
5151
]
5252
web-surfer = [
53-
"autogen-agentchat==0.7.1",
53+
"autogen-agentchat==0.7.2",
5454
"playwright>=1.48.0",
5555
"pillow>=11.0.0",
5656
"magika>=0.6.1rc2",
5757
"markitdown[all]~=0.1.0a3",
5858
]
5959
magentic-one = [
60-
"autogen-agentchat==0.7.1",
60+
"autogen-agentchat==0.7.2",
6161
"magika>=0.6.1rc2",
6262
"markitdown[all]~=0.1.0a3",
6363
"playwright>=1.48.0",
6464
"pillow>=11.0.0",
6565
]
6666
video-surfer = [
67-
"autogen-agentchat==0.7.1",
67+
"autogen-agentchat==0.7.2",
6868
"opencv-python>=4.5",
6969
"ffmpeg-python",
7070
"openai-whisper",

python/packages/autogen-studio/pyproject.toml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools", "setuptools-scm"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
44

55
[project]
66
name = "autogenstudio"
@@ -17,7 +17,6 @@ classifiers = [
1717
"Operating System :: OS Independent",
1818
]
1919

20-
2120
dependencies = [
2221
"pydantic",
2322
"pydantic-settings",
@@ -42,21 +41,19 @@ optional-dependencies = {web = ["fastapi", "uvicorn"], database = ["psycopg"]}
4241

4342
dynamic = ["version"]
4443

45-
[tool.setuptools]
46-
include-package-data = true
47-
48-
49-
[tool.setuptools.dynamic]
50-
version = {attr = "autogenstudio.version.VERSION"}
51-
readme = {file = ["README.md"]}
44+
[tool.hatch.version]
45+
path = "autogenstudio/version.py"
5246

53-
[tool.setuptools.packages.find]
54-
include = ["autogenstudio*"]
55-
exclude = ["*.tests*"]
56-
namespaces = false
47+
[tool.hatch.build.targets.wheel]
48+
packages = ["autogenstudio"]
5749

58-
[tool.setuptools.package-data]
59-
"autogenstudio" = ["*.*"]
50+
[tool.hatch.build.targets.sdist]
51+
include = [
52+
"autogenstudio/**",
53+
]
54+
exclude = [
55+
"*.tests*",
56+
]
6057

6158
[tool.pytest.ini_options]
6259
filterwarnings = [

python/uv.lock

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

0 commit comments

Comments
 (0)