From e4ff70b161dfa4a6b85efcb15042d22a18cc45c7 Mon Sep 17 00:00:00 2001 From: Armand Date: Mon, 16 Sep 2024 14:48:54 +0000 Subject: [PATCH] ping scipy version in setup.py to avoid error in CI #82 Signed-off-by: Armand --- setup.py | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index 1414deb..555fc4d 100644 --- a/setup.py +++ b/setup.py @@ -4,24 +4,25 @@ VERSION = vcub_keeper.__version__ setup( - name='vcub_keeper', + name="vcub_keeper", packages=find_packages(), version=VERSION, install_requires=[ - 'numpy==1.23.3', - 'pandas==1.1.1', - 'scikit-learn==0.23.2', - 'requests==2.28.0', - 'plotly==4.9.0', - 'matplotlib==3.3.1', - 'seaborn==0.11.0', - 'keplergl==0.2.2', - 'setuptools==61.3.0', - 'pytest==6.2.5' + "numpy==1.23.3", + "pandas==1.1.1", + "scikit-learn==0.23.2", + "requests==2.28.0", + "plotly==4.9.0", + "matplotlib==3.3.1", + "seaborn==0.11.0", + "keplergl==0.2.2", + "setuptools==61.3.0", + "pytest==6.2.5", + "scipy==1.10.1", ], description="Alerter les stations Vcub qui sont hors service", url="https://github.com/armgilles/vcub_keeper", - author='GILLES Armand', - author_email='armand.gilles@sub-data.fr', - license='MIT', + author="GILLES Armand", + author_email="armand.gilles@sub-data.fr", + license="MIT", )