Skip to content

Commit 9fd1f0a

Browse files
authored
fix(CI): use pinned deps for CI testing (#423)
* fix(CI): use pinned deps for CI testing * style: run pre-commit * fix: remove independent torch install
1 parent 656f66c commit 9fd1f0a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install -e ".[dev,bnb]"
26+
pip install -r requirements.txt
27+
# Install extras
28+
# [bnb]
29+
pip install bitsandbytes
30+
# [dev]
31+
pip install black hypothesis isort flake8 pre-commit pytest pytest-cov
2732
2833
- name: Lint with flake8
2934
run: |

0 commit comments

Comments
 (0)