-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unpin dask/distributed for development (#1319)
* Unpin dask/distributed for development * First pass at unblocking dask-expr issues - replace _Frame usage * First pass at unblocking pytest errors * Disable predicate pushdown & its tests if dask-expr enabled * Make sure partition_borders is computed in limit map_partitions func * Skip intake tests for now * Simplify cross join logic to avoid internal graph manipulation * Round trip timeseries fixture to pandas to avoid dask-expr bug * Fix skipif_dask_expr_enabled marker * Ignore warnings around mismatched dtypes in joins * Add handling for dask-expr to test_broadcast_join * Skip parquet stats tests for now * Skip DPP tests on dask-expr for now * Pass ddf object as meta for test_describe_model * Add dask-expr handling to test_sort_topk * Avoid using Dask graph internals for random functions * Skip over window count tests for now * Skip test_over_calls and test_over_with_windows * Update timeseries fixture comment to acknowledge fix * More detailed messages for window test skips * Skip test_join_alias_w_projection for now * Un-xfail test_xgboost_training_prediction on win32 * Windows failures are still intermittent * Bump rust to 1.73 to circumvent conda sha256 errors * Disable query planning in GPU CI for now * Revert "Bump rust to 1.73 to circumvent conda sha256 errors" This reverts commit 35aa225. * Use older conda-build version to try and resolve build issues * Pin to an older version of conda-build and boa * Skip deadlocking xgboost test on GPU * Add subset of testing with query planning disabled * Add query-planning to job names * Fix syntax errors * Add dask-expr to CI environments, bump to pandas 2 * Bump dask/dask-expr to 2024.2.1/0.5 to get around aggregation bug * Bump dask / dask-expr to 2024.3.1 / 1.0.5 to resolve drop bug * Bump dask / dask-expr to 2024.4.1 / 1.0.11 to resolve head bug * Remove dask-expr workaround from timeseries fixture * Unpin sqlalchemy in python 3.9 CI environment
- Loading branch information
1 parent
7600f60
commit 0540813
Showing
39 changed files
with
281 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
python>=3.9 | ||
dask==2024.1.1 | ||
dask>=2024.4.1 | ||
pandas>=1.4.0 | ||
jpype1>=1.0.2 | ||
openjdk>=8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
import pandas as pd | ||
import prompt_toolkit | ||
from packaging.version import parse as parseVersion | ||
|
||
_pandas_version = parseVersion(pd.__version__) | ||
_prompt_toolkit_version = parseVersion(prompt_toolkit.__version__) | ||
|
||
INDEXER_WINDOW_STEP_IMPLEMENTED = _pandas_version >= parseVersion("1.5.0") | ||
PANDAS_GT_200 = _pandas_version >= parseVersion("2.0.0") | ||
|
||
# TODO: remove if prompt-toolkit min version gets bumped | ||
PIPE_INPUT_CONTEXT_MANAGER = _prompt_toolkit_version >= parseVersion("3.0.29") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.