We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d3d719 commit f8bea7eCopy full SHA for f8bea7e
flake.nix
@@ -65,6 +65,7 @@
65
66
# necessary for quarto and quartodoc
67
export PYTHONPATH=''${PWD}''${PYTHONPATH:+:}''${PYTHONPATH}:''${PWD}/docs
68
+ export PYSPARK_PYTHON="$(which python)"
69
'';
70
71
preCommitDeps = with pkgs; [
nix/ibis.nix
@@ -7,6 +7,8 @@
7
, ibisTestingData
8
}:
9
let
10
+ # pyspark could be added here, but it doesn't handle parallel test execution
11
+ # well and serially it takes on the order of 7-8 minutes to execute serially
12
backends = [ "datafusion" "duckdb" "pandas" "polars" "sqlite" ]
13
# dask version has a show-stopping bug for Python >=3.11
14
++ lib.optionals (python3.pythonOlder "3.11") [ "dask" ];
0 commit comments