Skip to content

Commit

Permalink
Bump turbodbc to 4.8.0 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith authored Nov 14, 2023
1 parent ece6d74 commit b0229b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contexts/server-base/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ adbc-driver-postgresql

# optional turbodbc feature
# We are adding the arrow/numpy extra requirements to make sure pip installs compatible versions
turbodbc[arrow,numpy]==4.7.0
turbodbc[arrow,numpy]==4.8.0

# optional connectorx feature for x86_64 arch only, no Linux/arm64 wheel yet
connectorx; platform.machine == 'x86_64'
2 changes: 1 addition & 1 deletion contexts/turbodbc-wheel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN \
# Ensure requirements.txt is updated whenever turbodbc version bumped
RUN \
set -eux; \
pip wheel --no-cache-dir -w /wheels-tmp turbodbc==4.7.0
pip wheel --no-cache-dir -w /wheels-tmp turbodbc==4.8.0

RUN \
--mount=type=bind,source=auditwheel-keep-pyarrow.py,target=auditwheel-keep-pyarrow.py \
Expand Down
2 changes: 1 addition & 1 deletion contexts/turbodbc-wheel/auditwheel-keep-pyarrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

for policy in _POLICIES:
policy['lib_whitelist'].append('libarrow_python.so')
policy['lib_whitelist'].append('libarrow.so.1300')
policy['lib_whitelist'].append('libarrow.so.1400')

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
Expand Down
2 changes: 1 addition & 1 deletion contexts/turbodbc-wheel/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ pybind11>=2.10.4

# hack to ensure turbodbc builds pyarrow bindings
# auditwheel-keep-pyarrow.py is targeting pyarrow 13
pyarrow==13.0.0
pyarrow==14.0.1

0 comments on commit b0229b7

Please sign in to comment.