Skip to content

Commit

Permalink
ping scipy version in setup.py to avoid error in CI #82
Browse files Browse the repository at this point in the history
Signed-off-by: Armand <[email protected]>
  • Loading branch information
armgilles committed Sep 16, 2024
1 parent 13a9466 commit e4ff70b
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
license='MIT',
author="GILLES Armand",
author_email="[email protected]",
license="MIT",
)

0 comments on commit e4ff70b

Please sign in to comment.