Skip to content

Commit 6958b5a

Browse files
authored
Merge branch 'master' into change-workflow-folder-structure
2 parents da4f485 + ab69753 commit 6958b5a

39 files changed

+1675
-112
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/build_package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ jobs:
144144
QIANFAN_API_KEY: "${{ secrets.QIANFAN_API_KEY }}"
145145
ACI_API_KEY: "${{ secrets.ACI_API_KEY }}"
146146
BOHRIUM_API_KEY: "${{ secrets.BOHRIUM_API_KEY }}"
147+
MINIMAX_API_KEY: "${{ secrets.MINIMAX_API_KEY}}"
147148
CRYNUX_API_KEY: "${{ secrets.CRYNUX_API_KEY }}"
148149
NEBIUS_API_KEY: "${{ secrets.NEBIUS_API_KEY }}"
149150
COMETAPI_KEY: "${{ secrets.COMETAPI_KEY }}"

.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:

.github/workflows/pytest_package.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
CRYNUX_API_KEY: "${{ secrets.CRYNUX_API_KEY }}"
9191
NEBIUS_API_KEY: "${{ secrets.NEBIUS_API_KEY }}"
9292
COMETAPI_KEY: "${{ secrets.COMETAPI_KEY }}"
93+
MINIMAX_API_KEY: "${{ secrets.MINIMAX_API_KEY }}"
9394
run: |
9495
source .venv/bin/activate
9596
uv pip install -e ".[all, dev, docs]"
@@ -177,6 +178,7 @@ jobs:
177178
NEBIUS_API_KEY: "${{ secrets.NEBIUS_API_KEY }}"
178179
AMD_API_KEY: "${{ secrets.AMD_API_KEY }}"
179180
COMETAPI_KEY: "${{ secrets.COMETAPI_KEY }}"
181+
MINIMAX_API_KEY: "${{ secrets.MINIMAX_API_KEY }}"
180182
run: |
181183
source .venv/bin/activate
182184
uv pip install -e ".[all, dev, docs]"
@@ -262,6 +264,7 @@ jobs:
262264
NEBIUS_API_KEY: "${{ secrets.NEBIUS_API_KEY }}"
263265
AMD_API_KEY: "${{ secrets.AMD_API_KEY }}"
264266
COMETAPI_KEY: "${{ secrets.COMETAPI_KEY }}"
267+
MINIMAX_API_KEY: "${{ secrets.MINIMAX_API_KEY }}"
265268
run: |
266269
source .venv/bin/activate
267270
uv pip install -e ".[all, dev, docs]"

.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__',

0 commit comments

Comments
 (0)