Skip to content

Commit 14cd400

Browse files
committed
openssl headers
1 parent c7ae0f1 commit 14cd400

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

dev/build-wheels.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/bash
22
set -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)
48
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
59
export PATH="$HOME/.cargo/bin:$PATH"
610

@@ -11,8 +15,7 @@ cd io
1115
PYBIN="/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

opteryx/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opteryx"
3-
version = "0.26.0-beta.1649"
3+
version = "0.26.0-beta.1650"
44
description = "Query your data, where it lives"
55
requires-python = '>=3.11'
66
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)