Skip to content

Commit a5ec34d

Browse files
authored
chore: limit av version (#3699)
1 parent 66fab59 commit a5ec34d

File tree

5 files changed

+286
-259
lines changed

5 files changed

+286
-259
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ body:
2626
attributes:
2727
label: What version of camel are you using?
2828
description: Run command `python3 -c 'print(__import__("camel").__version__)'` in your shell and paste the output here.
29-
placeholder: E.g., 0.2.83a8
29+
placeholder: E.g., 0.2.83a9
3030
validations:
3131
required: true
3232

camel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from camel.logger import disable_logging, enable_logging, set_log_level
1616

17-
__version__ = '0.2.83a8'
17+
__version__ = '0.2.83a9'
1818

1919
__all__ = [
2020
'__version__',

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
project = 'CAMEL'
2828
copyright = '2024, CAMEL-AI.org'
2929
author = 'CAMEL-AI.org'
30-
release = '0.2.83a8'
30+
release = '0.2.83a9'
3131

3232
html_favicon = (
3333
'https://raw.githubusercontent.com/camel-ai/camel/master/misc/favicon.png'

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "camel-ai"
7-
version = "0.2.83a8"
7+
version = "0.2.83a9"
88
description = "Communicative Agents for AI Society Study"
99
authors = [{ name = "CAMEL-AI.org" }]
1010
requires-python = ">=3.10,<3.15"
@@ -36,6 +36,8 @@ dependencies = [
3636
"google-search-results>=2.4.2",
3737
]
3838

39+
[tool.uv]
40+
upgrade = false
3941

4042
[project.dependency-groups]
4143
test = ["pytest>=7,<8", "mock>=5,<6", "pytest-asyncio>=0.23.0,<0.24"]
@@ -140,6 +142,7 @@ media_tools = [
140142
"ffmpeg-python>=0.2.0,<0.3",
141143
"scenedetect>=0.6.5.2",
142144
"pytesseract>=0.3.13",
145+
"av<16",
143146
]
144147

145148
communication_tools = [
@@ -276,6 +279,7 @@ owl = [
276279
"exa-py>=1.10.0,<2",
277280
"reportlab>=4.4.2",
278281
"onnxruntime<=1.19.2",
282+
"av<16",
279283
]
280284
eigent = [
281285
"numpy>=1.2,<=2.2",
@@ -310,6 +314,7 @@ eigent = [
310314
"google-auth-httplib2==0.2.0",
311315
"google-auth-oauthlib==1.2.1",
312316
"httplib2>=0.31.0",
317+
"av<16",
313318
]
314319
all = [
315320
"numpy>=1.2,<=2.2",
@@ -452,6 +457,7 @@ all = [
452457
"scikit-image>=0.25.2",
453458
"scipy>=1.15.3",
454459
"statsmodels>=0.14.6",
460+
"av<16",
455461
]
456462
earth-science = [
457463
"numpy>=1.2,<=2.2",

0 commit comments

Comments
 (0)