mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
fix(ci): support AgentScope 2.0.6 initialization (#457)
Some checks are pending
Package Check / distributions (push) Waiting to run
Pre-commit / run (ubuntu-latest) (push) Waiting to run
Tests ReMe / Unit Tests - py3.11 (push) Waiting to run
Tests ReMe / Unit Tests - py3.12 (push) Waiting to run
Tests ReMe / Unit Tests - py3.13 (push) Waiting to run
Windows Smoke / CLI smoke - py3.11 (push) Waiting to run
Some checks are pending
Package Check / distributions (push) Waiting to run
Pre-commit / run (ubuntu-latest) (push) Waiting to run
Tests ReMe / Unit Tests - py3.11 (push) Waiting to run
Tests ReMe / Unit Tests - py3.12 (push) Waiting to run
Tests ReMe / Unit Tests - py3.13 (push) Waiting to run
Windows Smoke / CLI smoke - py3.11 (push) Waiting to run
This commit is contained in:
parent
c792fd197c
commit
6b9a75267b
6 changed files with 24 additions and 14 deletions
9
.github/workflows/pre-commit.yml
vendored
9
.github/workflows/pre-commit.yml
vendored
|
|
@ -28,11 +28,4 @@ jobs:
|
|||
run: |
|
||||
pre-commit install
|
||||
- name: Pre-commit starts
|
||||
run: |
|
||||
pre-commit run --all-files > pre-commit.log 2>&1 || true
|
||||
cat pre-commit.log
|
||||
if grep -q Failed pre-commit.log; then
|
||||
echo -e "\e[41m [**FAIL**] Please install pre-commit and format your code first. \e[0m"
|
||||
exit 1
|
||||
fi
|
||||
echo -e "\e[46m ********************************Passed******************************** \e[0m"
|
||||
run: pre-commit run --all-files
|
||||
|
|
|
|||
2
.github/workflows/windows-smoke.yml
vendored
2
.github/workflows/windows-smoke.yml
vendored
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
Pop-Location
|
||||
|
||||
- name: Run version job
|
||||
run: reme start service.backend=cli job=version
|
||||
run: reme start config=tests/fixtures/config/version-smoke.yaml job=version
|
||||
|
||||
- name: Run Windows path tests
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "reme-ai-studio"
|
||||
version = "0.4.1.7"
|
||||
version = "0.4.1.8"
|
||||
description = "Optional ReMe Studio static frontend."
|
||||
readme = "README.md"
|
||||
license = "Apache-2.0"
|
||||
|
|
|
|||
|
|
@ -43,10 +43,10 @@ dependencies = [
|
|||
|
||||
[project.optional-dependencies]
|
||||
web = [
|
||||
"reme-ai-studio==0.4.1.7",
|
||||
"reme-ai-studio==0.4.1.8",
|
||||
]
|
||||
core = [
|
||||
"agentscope==2.0.6",
|
||||
"agentscope[model-ollama]==2.0.6",
|
||||
"claude-agent-sdk>=0.2.126",
|
||||
"dingtalk-stream>=0.24.3",
|
||||
"openai-codex>=0.144.4",
|
||||
|
|
@ -58,7 +58,7 @@ core = [
|
|||
"neo4j>=6.2.0",
|
||||
"networkx>=3.4.2",
|
||||
"polars>=1.43.0",
|
||||
"reme-ai-studio==0.4.1.7",
|
||||
"reme-ai-studio==0.4.1.8",
|
||||
]
|
||||
dev = [
|
||||
"packaging>=24.2",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""ReMe CLI package."""
|
||||
|
||||
__version__ = "0.4.1.7"
|
||||
__version__ = "0.4.1.8"
|
||||
|
||||
from . import config
|
||||
from . import constants
|
||||
|
|
|
|||
17
tests/fixtures/config/version-smoke.yaml
vendored
Normal file
17
tests/fixtures/config/version-smoke.yaml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
workspace_dir: ${RUNNER_TEMP}/reme-version-smoke
|
||||
enable_logo: false
|
||||
log_to_console: false
|
||||
log_to_file: false
|
||||
|
||||
service:
|
||||
backend: cli
|
||||
|
||||
jobs:
|
||||
version:
|
||||
backend: base
|
||||
description: return reme package version
|
||||
parameters:
|
||||
type: object
|
||||
properties: {}
|
||||
steps:
|
||||
- backend: version_step
|
||||
Loading…
Add table
Reference in a new issue