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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
python-version: ${{ matrix.python-version }}

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

- name: Install Rust aarch64-apple-darwin target
run: rustup target add aarch64-apple-darwin
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
architecture: x64

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

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

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

- name: Create source dist
run: python setup.py sdist
Expand Down
2 changes: 1 addition & 1 deletion dev/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cd io
PYBIN="/opt/python/cp${PYTHON_VERSION//.}-cp${PYTHON_VERSION//.}/bin"

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

# Build the wheel
"${PYBIN}/python" setup.py bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion dev/build_counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class VersionStatus(Enum):

__major_version__ = 0
__minor_version__ = 26
__revision_version__ = 0
__revision_version__ = 1
__author__ = "@joocer"
__status__ = VersionStatus.RELEASE

Expand Down
4 changes: 2 additions & 2 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
# DO NOT EDIT THIS FILE DIRECTLY

__build__ = 1737
__build__ = 1738
__author__ = "@joocer"
__version__ = "0.26.0"
__version__ = "0.26.1"

# Store the version here so:
# 1) we don't load dependencies by storing it in __init__.py
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "opteryx"
version = "0.26.0"
version = "0.26.1"
description = "Query your data, where it lives"
requires-python = '>=3.11'
readme = {file = "README.md", content-type = "text/markdown"}
Expand Down
Loading