diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index b6c030cb..a328166d 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -66,7 +66,7 @@ jobs: - name: Build locally run: python -m pip install . - name: Test with PyTest - run: pytest python/scripts/test.py + run: pytest python/scripts/ test_python_37: @@ -95,7 +95,7 @@ jobs: run: python -m pip install . - name: Test with PyTest - run: pytest python/scripts/test.py + run: pytest python/scripts/ test_javascript: diff --git a/Package.swift b/Package.swift index 37158ecc..f0aec20c 100644 --- a/Package.swift +++ b/Package.swift @@ -19,7 +19,6 @@ let package = Package( cxxSettings: [ .headerSearchPath("../include/"), .headerSearchPath("../fp16/include/"), - .headerSearchPath("../robin-map/include/"), .headerSearchPath("../simismd/include/") ] ), diff --git a/binding.gyp b/binding.gyp index f62e49e1..4c7fc952 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,32 +2,36 @@ "targets": [ { "target_name": "usearch", - "sources": [ - "javascript/lib.cpp" - ], + "sources": ["javascript/lib.cpp"], "include_dirs": [ " #include -#include - namespace unum { namespace usearch { diff --git a/pyproject.toml b/pyproject.toml index 8327e1c3..0ea33932 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ filterwarnings = ["error"] [tool.cibuildwheel] test-requires = ["pytest", "numpy"] -test-command = "pytest {project}/python/scripts/test.py" +test-command = "pytest {project}/python/scripts" build-verbosity = 0 skip = ["*musllinux*", "*i686*", "pp*", "cp36-*"] diff --git a/robin-map b/robin-map deleted file mode 160000 index 851a59e0..00000000 --- a/robin-map +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 851a59e0e3063ee0e23089062090a73fd3de482d diff --git a/setup.py b/setup.py index a6fa3182..5b160321 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ "Topic :: Database :: Database Engines/Servers", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], - include_dirs=["include", "fp16/include", "robin-map/include", "simsimd/include"], + include_dirs=["include", "fp16/include", "simsimd/include"], ext_modules=ext_modules, install_requires=[ "numpy", diff --git a/wasm/CMakeLists.txt b/wasm/CMakeLists.txt index ed6f6c2c..ec3c5311 100644 --- a/wasm/CMakeLists.txt +++ b/wasm/CMakeLists.txt @@ -7,7 +7,6 @@ set(USEARCH_PUNNED_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/../c" "${CMAKE_CURRENT_SOURCE_DIR}/../include" "${CMAKE_CURRENT_SOURCE_DIR}/../fp16/include" - "${CMAKE_CURRENT_SOURCE_DIR}/../robin-map/include" ) add_executable(index lib.cpp)