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
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.11", "3.12"]
python-version: ["3.11", "3.14"]

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,16 @@ jobs:
)
PY

- name: Build and test wheels
- name: Build and test PR wheel
if: github.event_name == 'pull_request'
uses: pypa/cibuildwheel@v4.2.0
env:
CIBW_BUILD: cp311-manylinux_x86_64
with:
output-dir: wheelhouse

- name: Build and test release wheels
if: github.event_name != 'pull_request'
uses: pypa/cibuildwheel@v4.2.0
with:
output-dir: wheelhouse
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
pip install rabitqlib
```

Prebuilt wheels support Linux x86-64 and CPython 3.9–3.14. AVX2 + FMA is the
Prebuilt wheels support Linux x86-64 and CPython 3.11–3.14. AVX2 + FMA is the
portable CPU baseline; supported AVX-512 kernels are selected at runtime.

## Adopted across the vector-search ecosystem
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ a C++17 API for both indexes and low-level quantization.

- An x86-64 CPU supported by the selected kernels: most paths accept either
AVX2 with FMA or AVX-512F/BW/DQ with FMA
- Python 3.9 or newer for the Python package
- Python 3.11 or newer for the Python package
- A C++17 compiler with OpenMP support
- CMake 3.15 or newer

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "rabitqlib"
version = "0.2.0"
description = "RaBitQ Python bindings for HNSW, IVF, and SymQG"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.11"
dependencies = ["numpy"]

[project.optional-dependencies]
Expand All @@ -24,7 +24,7 @@ cmake.args = [
]

[tool.cibuildwheel]
build = "cp39-manylinux_x86_64 cp310-manylinux_x86_64 cp311-manylinux_x86_64 cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp314-manylinux_x86_64"
build = "cp311-manylinux_x86_64 cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp314-manylinux_x86_64"
build-verbosity = 1
environment = { CMAKE_ARGS = "-DRABITQ_ENABLE_NATIVE_OPTIMIZATION=OFF" }
test-requires = "pytest"
Expand All @@ -35,7 +35,7 @@ testpaths = ["tests/python"]

[tool.ruff]
line-length = 88
target-version = "py39"
target-version = "py311"

[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
Loading