From bbdf2968d27a755a055b5fe60ca55a538c041756 Mon Sep 17 00:00:00 2001 From: Bradley Ellert Date: Tue, 13 Feb 2018 17:26:52 -0800 Subject: [PATCH] Fix 0.2.3 dimod upper bound --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index fb167026..b76cc27a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -48,7 +48,7 @@ def build_extensions(self): name='dwave_qbsolv', version='0.2.3', packages=packages, - install_requires=['dimod>=0.3.1<=0.4.0', 'cython'], + install_requires=['dimod>=0.3.1,<0.5.0', 'cython'], ext_modules=cythonize(extensions, language='c++'), cmdclass={'build_ext': build_ext_compiler_check} )