From 796e26645bfbb965aa3b1ce37b2ad9619552ec52 Mon Sep 17 00:00:00 2001 From: Ignacio Aguilera Martos Date: Thu, 5 Oct 2023 11:08:07 +0200 Subject: [PATCH] New setup. Now it is compatible with python 3.11 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7a938ed..3a779c0 100644 --- a/setup.py +++ b/setup.py @@ -52,8 +52,8 @@ test_suite='test', # Requeriments - install_requires=['pytorch-lightning', 'scikit-learn', 'tensorflow==2.6.0', 'torchmetrics', 'wfdb', 'obspy', 'keras==2.6.0'], - - long_description_content_type='text/markdown' + install_requires=['scikit-learn', 'wfdb', 'obspy', 'tensorflow', 'keras', 'pytorch-lightning', 'torchmetrics'], + long_description_content_type='text/markdown', + python_requires='>=3.8' )