diff --git a/setup.py b/setup.py index 6adda4b..6fa5454 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='xbTools', - version='0.0.7', + version='0.0.8', description='Toolbox to analyse and setup xbeach models', url='https://github.com/openearth/xbeach-toolbox', # Authors: Menno de Ridder (menno.deridder@deltares.nl), Cas van Bemmelen (cas.van.bemmelen@witteveenbos.com) @@ -14,5 +14,5 @@ packages=['xbTools','xbTools.grid','xbTools.general'], package_data={'': ['*.json']}, # always include .json files in the package contents python_requires='>=3, <4', - install_requires=['numpy','matplotlib>=3.5.0','netCDF4>=1.6.0','scipy>=1.10.0','datetime','geopandas>=0.13.0','shapely>=2.0.0','fiona>=1.9.4.post1','pytest'], + install_requires=['numpy','matplotlib>=3.5.0','netCDF4>=1.6.0','scipy>=1.9.3','datetime','geopandas>=0.13.0','shapely>=2.0.0','fiona>=1.9.4.post1','pytest'], zip_safe=False)