File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22set -ex
33
4+ # Install OpenSSL development headers inside the container
5+ yum install -y openssl-devel
6+
7+ # Install Rust (required for building some Python packages with Rust extensions)
48curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
59export PATH=" $HOME /.cargo/bin:$PATH "
610
1115PYBIN=" /opt/python/cp${PYTHON_VERSION// .} -cp${PYTHON_VERSION// .} /bin"
1216
1317# Install necessary packages
14- " ${PYBIN} /python" -m pip install -U setuptools wheel setuptools-rust numpy cython==3.1.3
15- # "${PYBIN}/python" -c "import pyarrow; pyarrow.create_library_symlinks();"
18+ " ${PYBIN} /python" -m pip install -U setuptools wheel setuptools-rust numpy cython auditwheel
1619
1720# Build the wheel
1821" ${PYBIN} /python" setup.py bdist_wheel
Original file line number Diff line number Diff line change 11# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
22# DO NOT EDIT THIS FILE DIRECTLY
33
4- __build__ = 1649
4+ __build__ = 1650
55__author__ = "@joocer"
6- __version__ = "0.26.0-beta.1649 "
6+ __version__ = "0.26.0-beta.1650 "
77
88# Store the version here so:
99# 1) we don't load dependencies by storing it in __init__.py
Original file line number Diff line number Diff line change 11[project ]
22name = " opteryx"
3- version = " 0.26.0-beta.1649 "
3+ version = " 0.26.0-beta.1650 "
44description = " Query your data, where it lives"
55requires-python = ' >=3.11'
66readme = {file = " README.md" , content-type = " text/markdown" }
You can’t perform that action at this time.
0 commit comments