From 407c37f7ccd9f0ea8171a9f3bebb61889481f1d0 Mon Sep 17 00:00:00 2001 From: Mike Kittridge Date: Fri, 18 Aug 2023 11:45:47 -0600 Subject: [PATCH] updated package deps --- conda/meta.yaml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 0001bb5..ecc11c2 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "tethysts" %} -{% set version = "4.5.14" %} +{% set version = "4.5.15" %} # {% set sha256 = "ae2cc83fb5a75e8dc3e1b2c2137deea412c8a4c7c9acca52bf4ec59de52a80c9" %} # sha256 is the prefered checksum -- you can get it for a file with: @@ -38,7 +38,7 @@ requirements: - python >=3.8 - pandas<2 - tethys-data-models=0.4.11 - - hdf5tools>=0.2.3 + - hdf5tools>=0.2.4 - s3tethys>=0.0.8 - xarray>=2022.6.0 - pydantic=1.10 diff --git a/setup.py b/setup.py index c43b537..1b86052 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ name = 'tethysts' main_package = 'tethysts' datasets = 'datasets/time_series' -version = '4.5.14' +version = '4.5.15' descrip = 'tethys time series S3 extraction' # The below code is for readthedocs. To have sphinx/readthedocs interact with @@ -19,7 +19,7 @@ if os.environ.get('READTHEDOCS', False) == 'True': INSTALL_REQUIRES = [] else: - INSTALL_REQUIRES = ['zstandard', 'pandas<2', 'xarray>=2022.6.0', 'scipy', 'orjson', 'requests', 'shapely>=2.0.1', 'tethys-data-models>=0.4.11', 'hdf5tools>=0.2.3', 's3tethys>=0.0.8', 'pydantic==1.10', 'h5netcdf>=1.1.0'] + INSTALL_REQUIRES = ['zstandard', 'pandas<2', 'xarray>=2022.6.0', 'scipy', 'orjson', 'requests', 'shapely>=2.0.1', 'tethys-data-models>=0.4.11', 'hdf5tools>=0.2.4', 's3tethys>=0.0.8', 'pydantic==1.10', 'h5netcdf>=1.1.0'] # Get the long description from the README file with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: