From c1b9b79af3d10c6ee7b5d0afa1ce851ae975254c Mon Sep 17 00:00:00 2001 From: Yury Malkov Date: Mon, 17 Jun 2024 12:23:44 -0700 Subject: [PATCH 1/2] minor changes in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6eefcf20..b0f015a9 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ Full list of changes: https://github.com/nmslib/hnswlib/pull/523 ### Highlights: 1) Lightweight, header-only, no dependencies other than C++ 11 2) Interfaces for C++, Python, external support for Java and R (https://github.com/jlmelville/rcpphnsw). -3) Has full support for incremental index construction and updating the elements. Has support for element deletions -(by marking them in index). Index is picklable. +3) Has full support for incremental index construction and updating the elements (thanks to the contribution by Apoorv Sharma). Has support for element deletions +(by marking them in index, later can be replaced with other elements). Python index is picklable. 4) Can work with custom user defined distances (C++). 5) Significantly less memory footprint and faster build time compared to current nmslib's implementation. From 0b3ec46114cde8f6e9d088395178d7fc80d5ac1b Mon Sep 17 00:00:00 2001 From: Yury Malkov Date: Wed, 19 Jun 2024 19:08:40 -0700 Subject: [PATCH 2/2] Update build.yml --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b75c72c7..15cd2ea6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,11 +4,14 @@ on: [push, pull_request] jobs: test_python: - runs-on: ${{matrix.os}} + runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] python-version: ["3.7", "3.8", "3.9", "3.10"] + exclude: + - os: macos-latest + python-version: "3.7" steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 @@ -25,7 +28,7 @@ jobs: python -m unittest discover -v --start-directory tests/python --pattern "bindings_test*.py" test_cpp: - runs-on: ${{matrix.os}} + runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest]