Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dependency: Python 3.11.9 breaks Dask #537

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 6 additions & 18 deletions .github/workflows/test_dask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,21 @@ concurrency:
cancel-in-progress: true

jobs:
test_dask_lower_bound:
name: Dask 2023.5.0
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: make devenv
- name: Setup Dask
run: pip install pyarrow==7.0.0 pandas==2.0.2 dask[dataframe,distributed]==2023.5.0
- name: Test
run: make testdask

test_dask_latest:
name: Dask Latest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make devenv
- name: Setup Dask
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_version() -> str:
"cpp_sql_parser": ["fugue-sql-antlr[cpp]>=0.2.0"],
"spark": ["pyspark>=3.1.1"],
"dask": [
"dask[distributed,dataframe]>=2023.5.0",
"dask[distributed,dataframe]>=2024.4.1",
"pyarrow>=7.0.0",
"pandas>=2.0.2",
],
Expand All @@ -67,7 +67,7 @@ def get_version() -> str:
"all": SQL_DEPENDENCIES
+ [
"pyspark>=3.1.1",
"dask[distributed,dataframe]>=2023.5.0",
"dask[distributed,dataframe]>=2024.4.1",
"dask-sql",
"ray[data]>=2.4.0",
"notebook",
Expand Down
Loading