From 21c207d76f66065f135f933af6115f481c53325b Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Tue, 7 Feb 2023 09:32:42 +0100 Subject: [PATCH] Specify deps versions --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1fa40bf..49beffa 100644 --- a/setup.py +++ b/setup.py @@ -24,12 +24,12 @@ setup( "Topic :: Scientific/Engineering :: Physics", ], install_requires=[ - "quimb", - "qibo", + "qibo>=0.1.10", + "quimb>=1.4.0", ], extras_require={ "docs": [], - "tests": ["pytest", "pytest-cov"], + "tests": ["pytest>=7.2.0", "pytest-cov>=4.0.0"], }, python_requires=">=3.7.0", long_description=LONG_DESCRIPTION,