Skip to content

Commit 806c64f

Browse files
committed
compile errors
1 parent bc3e2b6 commit 806c64f

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

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

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

opteryx/compiled/structures/jsonl_decoder.pyx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ Fast JSONL decoder using Cython for performance-critical operations.
1212
This decoder uses native C string operations instead of regex for better performance.
1313
"""
1414

15-
import numpy
16-
cimport numpy
17-
numpy.import_array()
18-
1915
from libc.string cimport memchr, strlen, strstr
2016
from libc.stdlib cimport strtod, strtol, atoi
2117
from cpython.bytes cimport PyBytes_AS_STRING, PyBytes_GET_SIZE
@@ -25,7 +21,7 @@ import pyarrow
2521
from opteryx.third_party.tktech import csimdjson as simdjson
2622

2723

28-
cdef inline const char* find_key_value(const char* line, Py_ssize_t line_len, const char* key, Py_ssize_t key_len, Py_ssize_t* value_start, Py_ssize_t* value_len) nogil:
24+
cdef inline const char* find_key_value(const char* line, Py_ssize_t line_len, const char* key, Py_ssize_t key_len, Py_ssize_t* value_start, Py_ssize_t* value_len):
2925
"""
3026
Find the value for a given key in a JSON line.
3127

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.1652"
3+
version = "0.26.0-beta.1653"
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)