From 22be05e2f5e293aa60d545ccc71c0961611c472c Mon Sep 17 00:00:00 2001 From: maxreciprocate <56548574+maxreciprocate@users.noreply.github.com> Date: Mon, 28 Aug 2023 14:50:14 +0300 Subject: [PATCH] chore(build.yml): bump python version, remove scipy as bnb extra --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45568639c..fcc63a3e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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