-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from reweeden/rew/pr-6180-depenency-version
PR-6180 Loosen dependency restrictions
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ name = "asf_kerchunk_timeseries" | |
authors = [ | ||
{name = "Alaska Satellite Facility Discovery Team", email = "[email protected]"}, | ||
] | ||
description = """This package is a wrapper around [Kerchunk](https://github.com/fsspec/kerchunk) for generating | ||
zarr stores for individual netcdf4/hdf5 files as well as consolidating spatially aligned zarr stores | ||
description = """This package is a wrapper around [Kerchunk](https://github.com/fsspec/kerchunk) for generating | ||
zarr stores for individual netcdf4/hdf5 files as well as consolidating spatially aligned zarr stores | ||
into a single temporal zarr store, indexed by the source_file_name.""" | ||
|
||
|
||
|
@@ -20,17 +20,17 @@ classifiers = [ | |
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"aiobotocore==2.15.1", | ||
"zarr==2.18.2", | ||
"kerchunk==0.2.6", | ||
"s3fs==2024.9.0", | ||
"ujson==5.10.0", | ||
"h5py==3.12.1", | ||
"aiobotocore", | ||
"zarr~=2.18", | ||
"kerchunk~=0.2.6", | ||
"s3fs", | ||
"ujson~=5.10", | ||
"h5py~=3.6", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest==8.3.3", | ||
"pytest~=8.3", | ||
] | ||
|
||
[tool.setuptools] | ||
|