From e2a1c2aaa64fb95b8377b3db23f58f40085ae790 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Wed, 18 Oct 2023 11:40:46 -0700 Subject: [PATCH] force ruff reinstall --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9550984f59..38d46ceaf0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,9 @@ jobs: - name: Lint with flake8 run: python -m flake8 . --statistics -j4 - name: Lint with ruff - run: python3 -m ruff . + run: | + pip3 install --upgrade --force-reinstall ruff + python3 -m ruff . - name: Lint tinygrad with pylint run: python -m pylint tinygrad/ - name: Run mypy