Skip to content

Commit ab69753

Browse files
authored
enhance: codespell update and new version release (#3415)
1 parent 024db4f commit ab69753

File tree

9 files changed

+13
-46
lines changed

9 files changed

+13
-46
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.79a2
29+
placeholder: E.g., 0.2.79
3030
validations:
3131
required: true
3232

.github/workflows/codespell.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/pre_commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
push:
55
branches: [ "master", "qa" ]
66
paths-ignore:
7-
- "docs/**"
8-
- "**/*.md"
7+
- "docs/reference/**"
8+
- "docs/**/*.rst"
99
- "LICENSE"
1010
pull_request:
1111
branches: [ "master", "qa" ]
1212
paths-ignore:
13-
- "docs/**"
14-
- "**/*.md"
13+
- "docs/reference/**"
14+
- "docs/**/*.rst"
1515
- "LICENSE"
1616

1717
jobs:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ repos:
3333
rev: v2.4.1
3434
hooks:
3535
- id: codespell
36-
exclude: ^(examples/usecases/|docs/cookbooks/) # Ignore files under examples/usecases and docs/cookbooks
36+
exclude: ^(docs/reference/|docs/.*\.rst$) # Ignore auto-generated content only
3737
additional_dependencies:
3838
- tomli # for python_version < '3.11'

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.79a2'
17+
__version__ = '0.2.79'
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.79a2'
30+
release = '0.2.79'
3131

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

examples/usecases/aci_mcp/env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
GEMINI_API_KEY="YOUR_GEMINI_API_KEY_HERE"
1515

1616
# --- ACI aipolabs app mcp server ---
17-
# Required for using ACI.dev tools via the MCP (Model Contex Protocol) server.
17+
# Required for using ACI.dev tools via the MCP (Model Context Protocol) server.
1818
# How to get:
1919
# configure your apps and get your aci key at - https://platform.aci.dev/apps
2020
# Notes:

pyproject.toml

Lines changed: 3 additions & 3 deletions
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.79a2"
7+
version = "0.2.79"
88
description = "Communicative Agents for AI Society Study"
99
authors = [{ name = "CAMEL-AI.org" }]
1010
requires-python = ">=3.10,<3.15"
@@ -667,8 +667,8 @@ ignore_missing_imports = true
667667
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
668668
# the .py file needs to be listed twice since pre-commit and codespell treat
669669
# that path differently.
670-
skip = '.git*,*.pdf,*.svg,*.lock,*.css,examples/toolkits/semantic_scholar_toolkit.py,./examples/toolkits/semantic_scholar_toolkit.py,examples/usecases,./examples/usecases'
670+
skip = '.git*,*.pdf,*.svg,*.lock,*.css,examples/toolkits/semantic_scholar_toolkit.py,./examples/toolkits/semantic_scholar_toolkit.py'
671671
check-hidden = true
672672
# Ignore long lines as usually some kind of base64 encodings e.g. in ipynb
673673
ignore-regex = '^\s*"image/\S+": ".*|^.{300,}|\b(NotIn|Unsupport)\b'
674-
ignore-words-list = 'ans,datas,rouge,doubleClick,OCE,ACI,aci,Pinter,SoM,'
674+
ignore-words-list = 'ans,datas,rouge,doubleClick,OCE,ACI,aci,Pinter,SoM,checkin,'

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)