Skip to content

Commit

Permalink
Merge pull request #115 from josephnowak/feature/update-requirements
Browse files Browse the repository at this point in the history
Update requirements, now pydantic v2 is obligatory
  • Loading branch information
josephnowak committed Nov 27, 2023
2 parents 0af4264 + 4b7b12c commit b2a5b0a
Show file tree
Hide file tree
Showing 19 changed files with 675 additions and 615 deletions.
23 changes: 9 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
pandas==2.*
xarray==2023.*
numpy==1.*
dask[complete]==2023.*
zarr==2.*
bottleneck==1.*
fsspec==2023.*
orjson==3.*
pydantic==1.*
more-itertools==9.*
scipy==1.*
flox==0.*
numba==0.*
loguru==0.*
pandas>=2.0.0
xarray[accel]>=2023.0.0
numpy>=1.26.0
dask[complete]>=2023.0.0
zarr>=2.0.0
orjson>=3.0.0
pydantic>=2.0.0
more-itertools>=10.0.0
loguru>=0.7.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='TensorDB',
version='0.29.2',
version='0.30.0',
description='Database based in a file system storage combined with Xarray and Zarr',
author='Joseph Nowak',
author_email='josephgonowak97@gmail.com',
Expand Down
6 changes: 1 addition & 5 deletions tensordb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
from . import tensor_definition
from . import utils
from .algorithms import Algorithms
from .clients import (
TensorClient,
FileCacheTensorClient,
BaseTensorClient
)
from .clients import TensorClient, FileCacheTensorClient, BaseTensorClient
from .tensor_definition import TensorDefinition
from .utils.tools import extract_paths_from_formula
Loading

0 comments on commit b2a5b0a

Please sign in to comment.