From 0f08c0dfbe4c399d5fa5b1dbc7de22dc857b15bb Mon Sep 17 00:00:00 2001 From: ollie-d Date: Thu, 28 Feb 2019 14:08:39 -0800 Subject: [PATCH] Changed == to >= Was requiring exact versions of libraries which was causing problems, replaced to greater or equal to match description in readme --- requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 559e6fd..37fcba9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -numpy==1.11.1 -pylsl==1.10.5 -pyqtgraph==0.9.10 -scipy==0.17.1 -pyserial==3.1.1 +numpy>=1.11.1 +pylsl>=1.10.5 +pyqtgraph>=0.9.10 +scipy>=0.17.1 +pyserial>=3.1.1