Skip to content

Commit 1705c77

Browse files
committed
fix build issues
1 parent af7ba93 commit 1705c77

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
python-version: ${{ matrix.python-version }}
6464

6565
- name: Install Python package dependencies
66-
run: python -m pip install --upgrade cython==3.1.3 wheel numpy setuptools_rust
66+
run: python -m pip install --upgrade cython wheel numpy setuptools_rust draken
6767

6868
- name: Install Rust aarch64-apple-darwin target
6969
run: rustup target add aarch64-apple-darwin
@@ -109,7 +109,7 @@ jobs:
109109
architecture: x64
110110

111111
- name: Install Python package dependencies
112-
run: python -m pip install --upgrade cython==3.1.3 wheel numpy setuptools_rust pyarrow
112+
run: python -m pip install --upgrade cython wheel numpy setuptools_rust draken
113113

114114
- name: Build binary wheel
115115
run: python setup.py bdist_wheel
@@ -128,7 +128,7 @@ jobs:
128128
uses: actions/checkout@v4.1.7
129129

130130
- name: Install Python package dependencies
131-
run: python -m pip install --upgrade cython==3.1.3 wheel numpy setuptools_rust pyarrow
131+
run: python -m pip install --upgrade cython wheel numpy setuptools_rust draken
132132

133133
- name: Create source dist
134134
run: python setup.py sdist

dev/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd io
1515
PYBIN="/opt/python/cp${PYTHON_VERSION//.}-cp${PYTHON_VERSION//.}/bin"
1616

1717
# Install necessary packages
18-
"${PYBIN}/python" -m pip install -U setuptools wheel setuptools-rust numpy cython auditwheel
18+
"${PYBIN}/python" -m pip install -U setuptools wheel setuptools-rust numpy cython auditwheel draken
1919

2020
# Build the wheel
2121
"${PYBIN}/python" setup.py bdist_wheel

dev/build_counter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class VersionStatus(Enum):
2525

2626
__major_version__ = 0
2727
__minor_version__ = 26
28-
__revision_version__ = 0
28+
__revision_version__ = 1
2929
__author__ = "@joocer"
3030
__status__ = VersionStatus.RELEASE
3131

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__ = 1737
4+
__build__ = 1738
55
__author__ = "@joocer"
6-
__version__ = "0.26.0"
6+
__version__ = "0.26.1"
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"
3+
version = "0.26.1"
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)