From db506d8c899c8a006c48f4f6ce70decbbc6adf70 Mon Sep 17 00:00:00 2001 From: "weirui.kwr@alibaba-inc.com" Date: Mon, 29 Jul 2024 10:08:06 +0800 Subject: [PATCH 1/2] add cname --- .github/workflows/sphinx_docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sphinx_docs.yml b/.github/workflows/sphinx_docs.yml index c94edaad2..d7ec58ae9 100644 --- a/.github/workflows/sphinx_docs.yml +++ b/.github/workflows/sphinx_docs.yml @@ -43,4 +43,5 @@ jobs: if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: 'docs/sphinx_doc/build/html' \ No newline at end of file + publish_dir: 'docs/sphinx_doc/build/html' + cname: doc.agentscope.io \ No newline at end of file From 6db2a5eecbaeae714daf6edf4595f215284d912d Mon Sep 17 00:00:00 2001 From: "weirui.kwr@alibaba-inc.com" Date: Mon, 29 Jul 2024 14:06:28 +0800 Subject: [PATCH 2/2] update --- .github/workflows/pre-commit.yml | 3 +++ .github/workflows/sphinx_docs.yml | 3 +++ .github/workflows/unittest.yml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index c25591764..ac2c3ed85 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -18,6 +18,9 @@ jobs: uses: actions/setup-python@master with: python-version: 3.9 + - name: Update setuptools + run: | + pip install setuptools==68.2.2 wheel==0.41.2 - name: Install AgentScope run: | pip install -q -e .[full] diff --git a/.github/workflows/sphinx_docs.yml b/.github/workflows/sphinx_docs.yml index d7ec58ae9..416d0a08d 100644 --- a/.github/workflows/sphinx_docs.yml +++ b/.github/workflows/sphinx_docs.yml @@ -26,6 +26,9 @@ jobs: uses: actions/setup-python@master with: python-version: ${{ matrix.python-version }} + - name: Update setuptools + run: | + pip install setuptools==68.2.2 wheel==0.41.2 - name: Install Dependencies run: | pip install -q -e .[full] diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index a3a71928e..94d349f12 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -18,6 +18,9 @@ jobs: uses: actions/setup-python@master with: python-version: ${{ matrix.python-version }} + - name: Update setuptools + run: | + pip install setuptools==68.2.2 wheel==0.41.2 - name: Install Minimal Dependencies run: | pip install -q -e .