From f5eef9791a0b9a573a82d20d91707c66700b622f Mon Sep 17 00:00:00 2001 From: lucas-nelson-uiuc Date: Fri, 27 Dec 2024 13:51:11 -0600 Subject: [PATCH] tests: include pandas, pyarrow to testing workflow --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 019b1b6..2d9951c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: python-version: ["3.10", "3.11", "3.12", "3.13"] - pyspark-version: ["3.5.0", "3.5.4"] + pyspark-version: ["3.5.0"] attrs-version: ["22.1.0", "23.1.0", "24.3.0"] steps: @@ -22,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pyspark==${{ matrix.pyspark-version }} attrs==${{ matrix.attrs-version }} - pip install --upgrade pytest loguru pandas pyarrow + pip install --upgrade pytest loguru pandas pyarrow setuptools pip install --editable . - name: Run testing suite run: python -m pytest tests