Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 0 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,6 @@ jobs:
use-mamba: true
python-version: "3.8"
channel-priority: strict
# FIXME: aarch64 builds require glibc>=2.32 to prevent TLS allocation error when importing;
# is there any way we could modify the TLS model of its shared object to avoid this?
# https://bugzilla.redhat.com/show_bug.cgi?id=1722181
# xref: https://github.com/dask-contrib/dask-sql/issues/1169
- name: Update platform tag for aarch64 wheel
if: matrix.os == 'ubuntu-latest'
run: |
mamba install wheel

wheel tags --platform-tag=manylinux_2_32_aarch64 \
--remove \
dist/*_aarch64.whl
- name: Check dist files
run: |
mamba install twine
Expand Down
6 changes: 0 additions & 6 deletions continuous_integration/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,6 @@ requirements:
- prompt-toolkit >=3.0.8
- pygments >=2.7.1
- tabulate
run_constrained:
# FIXME: aarch64 builds require glibc>=2.32 to prevent TLS allocation error when importing;
# is there any way we could modify the TLS model of its shared object to avoid this?
# https://bugzilla.redhat.com/show_bug.cgi?id=1722181
# xref: https://github.com/dask-contrib/dask-sql/issues/1169
- __glibc >=2.32 # [aarch64]

test:
imports:
Expand Down
4 changes: 4 additions & 0 deletions dask_sql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# FIXME: can we modify TLS model of Rust object to avoid aarch64 glibc bug?
# https://github.com/dask-contrib/dask-sql/issues/1169
import dask_planner.rust

from . import _version, config
from .cmd import cmd_loop
from .context import Context
Expand Down