Skip to content

Commit

Permalink
🔧Tried to only install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
carefree0910 committed Sep 21, 2024
1 parent 457b283 commit 8517c4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: pip install .
run: |
pip install toml && python -c 'import toml; c = toml.load("pyproject.toml")
print("\n".join(c["build-system"]["requires"]))' | pip install -r /dev/stdin
- name: Install check dependencies
run: pip install black mypy pandas-stubs
- name: black
Expand Down

0 comments on commit 8517c4b

Please sign in to comment.