From 4c0fef68f10f1e0c0dc2fc9c925c611e1379d621 Mon Sep 17 00:00:00 2001 From: Max Ryabinin Date: Fri, 9 Sep 2022 06:59:50 +0300 Subject: [PATCH] Bump the version of bitsandbytes --- .github/workflows/run-benchmarks.yml | 2 +- .github/workflows/run-tests.yml | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-benchmarks.yml b/.github/workflows/run-benchmarks.yml index de81a0bf5..97a085e50 100644 --- a/.github/workflows/run-benchmarks.yml +++ b/.github/workflows/run-benchmarks.yml @@ -28,7 +28,7 @@ jobs: pip install -r requirements-dev.txt - name: Build bitsandbytes run: | - pip install bitsandbytes==0.32.2 + pip install bitsandbytes==0.32.3 - name: Build hivemind run: | pip install . diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4361a2c85..09b276fd6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -31,7 +31,7 @@ jobs: pip install -r requirements-dev.txt - name: Build bitsandbytes run: | - pip install bitsandbytes==0.32.2 + pip install bitsandbytes==0.32.3 - name: Build hivemind run: | pip install . @@ -93,7 +93,7 @@ jobs: pip install -r requirements-dev.txt - name: Build bitsandbytes run: | - pip install bitsandbytes==0.32.2 + pip install bitsandbytes==0.32.3 - name: Build hivemind run: | pip install -e . --no-use-pep517 diff --git a/setup.py b/setup.py index 77461a4c8..f9e9b3970 100644 --- a/setup.py +++ b/setup.py @@ -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.2"] +extras["bitsandbytes"] = ["bitsandbytes==0.32.3"] extras["all"] = extras["dev"] + extras["docs"] + extras["bitsandbytes"]