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

Support turbodbc-4.5.10 and add connectorx #42

Merged
merged 2 commits into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions contexts/server-base/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ adbc-driver-postgresql

# optional turbodbc feature
turbodbc

# optional connectorx feature
connectorx
2 changes: 1 addition & 1 deletion contexts/server-base/type/server-all-ai/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jpy>=0.13.0
deephaven-plugin
numpy
pandas
pyarrow<10
pyarrow
numba; python_version < "3.11"
jedi==0.18.2
nltk
Expand Down
3 changes: 2 additions & 1 deletion contexts/turbodbc-wheel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ RUN \
set -eux; \
pip install -r requirements.txt

# CFLAGS is still needed to work around https://github.com/blue-yonder/turbodbc/issues/384
RUN \
set -eux; \
pip wheel --no-cache-dir -w /wheels-tmp turbodbc
CFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" pip wheel --no-cache-dir -w /wheels-tmp turbodbc

RUN \
--mount=type=bind,source=auditwheel-keep-pyarrow.py,target=auditwheel-keep-pyarrow.py \
Expand Down