File tree Expand file tree Collapse file tree 6 files changed +281
-241
lines changed
toolkits/terminal_toolkit Expand file tree Collapse file tree 6 files changed +281
-241
lines changed Original file line number Diff line number Diff line change 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.85
29+ placeholder : E.g., 0.2.86
3030 validations :
3131 required : true
3232
Original file line number Diff line number Diff line change 1414
1515from camel .logger import disable_logging , enable_logging , set_log_level
1616
17- __version__ = '0.2.85 '
17+ __version__ = '0.2.86 '
1818
1919__all__ = [
2020 '__version__' ,
Original file line number Diff line number Diff line change @@ -384,8 +384,11 @@ def setup_initial_env_with_venv(
384384 symlinks = True ,
385385 )
386386 except Exception :
387+ # Clean up partial environment
388+ if os .path .exists (env_path ):
389+ shutil .rmtree (env_path )
387390 # Fallback to symlinks=False if symlinks=True fails
388- # (e.g., on some Windows configurations)
391+ # (e.g., on some Windows configurations or macOS Beta )
389392 venv .create (
390393 env_path ,
391394 with_pip = True ,
@@ -555,6 +558,9 @@ def clone_current_environment(
555558 try :
556559 venv .create (env_path , with_pip = True , symlinks = True )
557560 except Exception :
561+ # Clean up partial environment
562+ if os .path .exists (env_path ):
563+ shutil .rmtree (env_path )
558564 # Fallback to symlinks=False if symlinks=True fails
559565 venv .create (env_path , with_pip = True , symlinks = False )
560566
Original file line number Diff line number Diff line change 2727project = 'CAMEL'
2828copyright = '2024, CAMEL-AI.org'
2929author = 'CAMEL-AI.org'
30- release = '0.2.85 '
30+ release = '0.2.86 '
3131
3232html_favicon = (
3333 'https://raw.githubusercontent.com/camel-ai/camel/master/misc/favicon.png'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " camel-ai"
7- version = " 0.2.85 "
7+ version = " 0.2.86 "
88description = " Communicative Agents for AI Society Study"
99authors = [{ name = " CAMEL-AI.org" }]
1010requires-python = " >=3.10,<3.15"
You can’t perform that action at this time.
0 commit comments