From 068872ed5e096bc197e88a5852164a229d019ded Mon Sep 17 00:00:00 2001 From: James Edington Administrator Date: Sat, 7 Oct 2023 14:39:26 -0500 Subject: [PATCH] Fix matplotlib dependency This doesn't get pulled in when running "pip install deepCR" from PyPI, which leads to "ModuleNotFoundError: No module named 'matplotlib'" https://github.com/profjsb/deepCR/blob/0245290123f0f4b745a6571841fe488bb267edd4/deepCR/training.py#L5 --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 4d316ee..398635b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,6 +40,7 @@ install_requires = numpy>=1.16.3 astropy>=3.1.2 astroscrappy>=1.0.8 + matplotlib>=3.1.1 tqdm scikit-image>=0.15.0;python_version>='3.7' scikit-image==0.15.*;python_version<'3.7'