From 2cdc937c4ae239d9fced275cdb3dd4c91c5054f9 Mon Sep 17 00:00:00 2001 From: Ayush Dattagupta Date: Thu, 21 Mar 2024 14:56:48 -0700 Subject: [PATCH] remove python 3.9 testing for now Signed-off-by: Ayush Dattagupta --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0120af3..375df5b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.10"] + python-version: ["3.10"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -39,6 +39,6 @@ jobs: - name: Run tests # TODO: Remove env variable when gpu dependencies are optional run: | - RAPIDS_NO_INITIALIZE=true python -m pytest -v --cpu + RAPIDS_NO_INITIALIZE=1 python -m pytest -v --cpu