Skip to content

Commit

Permalink
Update bitsandbytes, relax its version constraint (#510)
Browse files Browse the repository at this point in the history
* Update bitsandbytes, relax its version constraint

(cherry picked from commit 44d9569)
  • Loading branch information
mryab committed Oct 19, 2022
1 parent 14de6c5 commit 9e65c30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Build bitsandbytes
run: |
pip install bitsandbytes==0.32.3
pip install bitsandbytes==0.34.0
- name: Build hivemind
run: |
pip install .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Build bitsandbytes
run: |
pip install bitsandbytes==0.32.3
pip install bitsandbytes==0.34.0
- name: Build hivemind
run: |
pip install .
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Build bitsandbytes
run: |
pip install bitsandbytes==0.32.3
pip install bitsandbytes==0.34.0
- name: Build hivemind
run: |
pip install -e . --no-use-pep517
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def run(self):
with open("requirements-docs.txt") as docs_requirements_file:
extras["docs"] = list(map(str, parse_requirements(docs_requirements_file)))

extras["bitsandbytes"] = ["bitsandbytes==0.32.3"]
extras["bitsandbytes"] = ["bitsandbytes~=0.34.0"]

extras["all"] = extras["dev"] + extras["docs"] + extras["bitsandbytes"]

Expand Down

0 comments on commit 9e65c30

Please sign in to comment.