From f193eeed2568c2f74eacd2f04b6600de18f36c12 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Sat, 30 Oct 2021 16:15:41 -0700 Subject: [PATCH] bump all to python 3.9 --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 56537a41f3..829c314f79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: run: sloccount tinygrad test examples extra; if [ $(sloccount tinygrad | sed -n 's/.*Total Physical Source Lines of Code (SLOC)[ ]*= \([^ ]*\).*/\1/p' | tr -d ',') -gt 1000 ]; then exit 1; fi linter: - name: Indentation Linter + name: Indentation Linter runs-on: ubuntu-latest steps: @@ -46,10 +46,10 @@ jobs: run: sudo apt-get update - name: Install OpenCL run: sudo apt-get install pocl-opencl-icd - - 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: pip install -e '.[testing]' - name: Run Pytest @@ -66,10 +66,10 @@ jobs: run: sudo apt-get update - name: Install OpenCL run: sudo apt-get install pocl-opencl-icd - - 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: pip install -e '.[gpu,testing]' - name: Run Pytest