Skip to content

Commit

Permalink
update req
Browse files Browse the repository at this point in the history
  • Loading branch information
pan-x-c committed Jul 29, 2024
1 parent c1b56b3 commit 09f0c0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install AgentScope
run: |
pip install -q -e .[full]
pip install ffmpy
pip install -e .[full]
- name: Install pre-commit
run: |
pre-commit install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sphinx_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install -q -e .[full]
pip install -e .[full]
- id: build
name: Build Documentation
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install Minimal Dependencies
run: |
pip install -q -e .
pip install -e .
- name: Run import tests
run: |
python -c "import agentscope; print(agentscope.__version__)"
Expand Down

0 comments on commit 09f0c0b

Please sign in to comment.