From 65a6375a4a03ccade6731c887ccdd7813d8fd9b9 Mon Sep 17 00:00:00 2001 From: Hunter Freyer Date: Wed, 25 Jun 2025 16:01:37 +0000 Subject: [PATCH] Remove unused scipy references. The library claims to require scipy, but doesn't actually use it at all. This change will make the library usable in places where scipy isn't available for whatever reason. --- Monsoon/sampleEngine.py | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Monsoon/sampleEngine.py b/Monsoon/sampleEngine.py index 0ff1371..378c672 100644 --- a/Monsoon/sampleEngine.py +++ b/Monsoon/sampleEngine.py @@ -14,8 +14,6 @@ import sys import usb import os -import scipy as sp -import scipy.stats class channels: timeStamp = 0 diff --git a/setup.py b/setup.py index ed5cccb..ef4f261 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ # project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files - install_requires=['numpy','pyusb','libusb1','scipy'], + install_requires=['numpy','pyusb','libusb1'], # If there are data files included in your packages that need to be # installed in site-packages, specify them here. If using Python 2.6 or less, then these