Skip to content

Commit

Permalink
fix python version
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jan 4, 2025
1 parent c1a3ad0 commit 76c3200
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ jobs:
cache-suffix: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: install-reqs
run: uv pip install -e ".[dev, core, extra, modin, dask]" --system
run: uv pip install -e ".[dev, core, extra, modin]" --system
- name: install dask
run: uv pip install -e ".[dask]" --system
# Dask minimum version requires 3.10+
if: matrix.python-version == '3.11' || matrix.python-version == '3.13'
- name: install pyspark
run: uv pip install -e ".[pyspark]" --system
# PySpark is not yet available on Python3.12+
Expand Down

0 comments on commit 76c3200

Please sign in to comment.