File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
22# DO NOT EDIT THIS FILE DIRECTLY
33
4- __build__ = 1941
4+ __build__ = 1942
55__author__ = "@joocer"
6- __version__ = "0.26.2-beta.1941 "
6+ __version__ = "0.26.2-beta.1942 "
77
88# Store the version here so:
99# 1) we don't load dependencies by storing it in __init__.py
Original file line number Diff line number Diff line change 11[project ]
22name = " opteryx"
3- version = " 0.26.2-beta.1941 "
3+ version = " 0.26.2-beta.1942 "
44description = " Query your data, where it lives"
55requires-python = ' >=3.11'
66readme = {file = " README.md" , content-type = " text/markdown" }
Original file line number Diff line number Diff line change @@ -36,9 +36,12 @@ def is_linux(): return platform.system() == "Linux"
3636# Architecture detection for SIMD
3737def detect_architecture ():
3838 machine = platform .machine ().lower ()
39- if "arm" in machine or "aarch64" in machine :
39+ # Distinguish between 32-bit ARM (arm/armv7) and 64-bit ARM (aarch64/arm64)
40+ if "aarch64" in machine or "arm64" in machine :
41+ return "aarch64"
42+ if "arm" in machine :
4043 return "arm"
41- elif "x86" in machine or "amd64" in machine :
44+ if "x86" in machine or "amd64" in machine :
4245 return "x86_64"
4346 return machine
4447
You can’t perform that action at this time.
0 commit comments