Skip to content

Commit

Permalink
Merge pull request #1731 from mabel-dev/0.15.3
Browse files Browse the repository at this point in the history
0.15.3
  • Loading branch information
joocer authored Jun 6, 2024
2 parents dc4649e + 7b3a3ef commit 9c9e2ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__build__ = 553
__build__ = 554

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,7 @@ class VersionStatus(Enum):
_major = 0
_minor = 15
_revision = 3
_status = VersionStatus.ALPHA
_status = VersionStatus.RELEASE

__author__ = "@joocer"
__version__ = f"{_major}.{_minor}.{_revision}" + (
Expand Down
4 changes: 2 additions & 2 deletions opteryx/compiled/list_ops/cython_list_ops.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ cpdef cnp.ndarray cython_long_arrow_op(cnp.ndarray arr, object key):
return result


cpdef cython_get_element_op(cnp.ndarray[object, ndim=1] array, int key):
cpdef cnp.ndarray cython_get_element_op(cnp.ndarray[object, ndim=1] array, int key):
"""
Fetches elements from each sub-array of a NumPy array at a given index.
Expand Down Expand Up @@ -234,4 +234,4 @@ cpdef cython_get_element_op(cnp.ndarray[object, ndim=1] array, int key):
result[i] = None
i += 1

return result
return result
4 changes: 2 additions & 2 deletions opteryx/managers/cache/null_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ def get(self, key: bytes) -> None:
def set(self, key: bytes, value: Any) -> None:
return None

def touch(self, key:str):
pass
def touch(self, key: str):
pass

0 comments on commit 9c9e2ec

Please sign in to comment.