File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,9 @@ jobs:
110
110
with :
111
111
miniforge-variant : Mambaforge
112
112
use-mamba : true
113
- python-version : " 3.8"
113
+ # TODO: drop support for python 3.8, add support for python 3.11
114
+ # https://github.com/dask-contrib/dask-sql/pull/1143
115
+ python-version : " 3.9"
114
116
channel-priority : strict
115
117
- name : Install Protoc
116
118
uses : arduino/setup-protoc@v1
Original file line number Diff line number Diff line change @@ -107,7 +107,9 @@ jobs:
107
107
with :
108
108
miniforge-variant : Mambaforge
109
109
use-mamba : true
110
- python-version : " 3.8"
110
+ # TODO: drop support for python 3.8, add support for python 3.11
111
+ # https://github.com/dask-contrib/dask-sql/pull/1143
112
+ python-version : ${{ needs.detect-ci-trigger.outputs.triggered == 'true' && '3.9' || '3.8' }}
111
113
channel-priority : strict
112
114
- name : Install Protoc
113
115
uses : arduino/setup-protoc@v1
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ def pytest_addoption(parser):
12
12
13
13
14
14
def pytest_runtest_setup (item ):
15
+ # TODO: explore adding support for pyarrow string columns
16
+ dask .config .set ({"dataframe.convert-string" : False })
15
17
if "gpu" in item .keywords :
16
18
if not item .config .getoption ("--rungpu" ):
17
19
pytest .skip ("need --rungpu option to run" )
You can’t perform that action at this time.
0 commit comments