Skip to content

Commit

Permalink
chore(build.yml): bump python version, remove scipy as bnb extra
Browse files Browse the repository at this point in the history
  • Loading branch information
maxreciprocate committed Aug 28, 2023
1 parent bfb53f6 commit 22be05e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Install extras
# [bnb] (TODO: Remove `scipy` once `bnb` adds it as hard dep)
pip install bitsandbytes scipy
pip install bitsandbytes
# [dev]
pip install black hypothesis isort flake8 pre-commit pytest pytest-cov
Expand Down

0 comments on commit 22be05e

Please sign in to comment.