1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: temporarily disable nmslib test dependency
nmslib is not packaged for Debian yet
Author: Paul Wise <pabs@debian.org>
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -288,11 +288,11 @@ core_testenv = [
if not sys.platform.lower().startswith("win") and sys.version_info[:2] < (3, 11):
core_testenv.append('POT')
-if not sys.platform.lower().startswith("win") and sys.version_info[:2] < (3, 10):
+#if not sys.platform.lower().startswith("win") and sys.version_info[:2] < (3, 10):
#
# nmslib wheels not available for Python 3.10 and 3.11 as of Dec 2022
#
- core_testenv.append('nmslib')
+ #core_testenv.append('nmslib')
# Add additional requirements for testing on Linux that are skipped on Windows.
linux_testenv = core_testenv[:] + visdom_req
|