Skip to content

Commit ab50883

Browse files
authored
Merge pull request #2893 from mabel-dev/0.26.0-release-1
release
2 parents 34e564f + b824193 commit ab50883

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

dev/build_counter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class VersionStatus(Enum):
2525

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

3232
__build__ = None
3333
with open(f"{LIBRARY_NAME}/__version__.py", mode="r", encoding="utf-8") as v:

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__ = 1736
4+
__build__ = 1737
55
__author__ = "@joocer"
6-
__version__ = "0.26.1-beta.1736"
6+
__version__ = "0.26.0"
77

88
# Store the version here so:
99
# 1) we don't load dependencies by storing it in __init__.py

opteryx/compiled/list_ops/list_regex_replace.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ cpdef object list_regex_replace(object data, bytes pattern, bytes replacement):
5858
cdef _StringVectorCIterator it # C-level iterator
5959
cdef object builder # StringVectorBuilder
6060
cdef Py_ssize_t estimated_bytes_per_entry = 50
61-
61+
6262
# Pre-allocate string buffer to reduce reallocation overhead
6363
# This capacity will grow if needed but helps for common case
6464
value_str.reserve(256)

opteryx/operators/aggregate_and_group_node.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
1414
1515
"""
16+
1617
import time
18+
1719
import numpy
1820
import pyarrow
1921
from orso.types import OrsoTypes

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.1-beta.1736"
3+
version = "0.26.0"
44
description = "Query your data, where it lives"
55
requires-python = '>=3.11'
66
readme = {file = "README.md", content-type = "text/markdown"}

tests/unit/storage/test_sql_sqlite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import pytest
1717

18-
sys.path.insert(1, os.path.join(sys.path[0], "../.."))
18+
sys.path.insert(1, os.path.join(sys.path[0], "../../.."))
1919

2020
import opteryx
2121
from opteryx.connectors import SqlConnector

0 commit comments

Comments
 (0)