Skip to content

Commit 020de1a

Browse files
authored
Merge pull request #569 from nmslib/yurymalkov-fix-ci
Fix CI
2 parents e2ca570 + 0b3ec46 commit 020de1a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on: [push, pull_request]
44

55
jobs:
66
test_python:
7-
runs-on: ${{matrix.os}}
7+
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, windows-latest, macos-latest]
1111
python-version: ["3.7", "3.8", "3.9", "3.10"]
12+
exclude:
13+
- os: macos-latest
14+
python-version: "3.7"
1215
steps:
1316
- uses: actions/checkout@v3
1417
- uses: actions/setup-python@v4
@@ -25,7 +28,7 @@ jobs:
2528
python -m unittest discover -v --start-directory tests/python --pattern "bindings_test*.py"
2629
2730
test_cpp:
28-
runs-on: ${{matrix.os}}
31+
runs-on: ${{ matrix.os }}
2932
strategy:
3033
matrix:
3134
os: [ubuntu-latest, windows-latest, macos-latest]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Full list of changes: https://github.com/nmslib/hnswlib/pull/523
2525
### Highlights:
2626
1) Lightweight, header-only, no dependencies other than C++ 11
2727
2) Interfaces for C++, Python, external support for Java and R (https://github.com/jlmelville/rcpphnsw).
28-
3) Has full support for incremental index construction and updating the elements. Has support for element deletions
29-
(by marking them in index). Index is picklable.
28+
3) Has full support for incremental index construction and updating the elements (thanks to the contribution by Apoorv Sharma). Has support for element deletions
29+
(by marking them in index, later can be replaced with other elements). Python index is picklable.
3030
4) Can work with custom user defined distances (C++).
3131
5) Significantly less memory footprint and faster build time compared to current nmslib's implementation.
3232

0 commit comments

Comments
 (0)