Skip to content

Commit

Permalink
Remove unused dependencies. (#740)
Browse files Browse the repository at this point in the history
* Remove unused dependencies.

* Update CHANGELOG

* Registration is client-side, so watchfiles is client-side.
  • Loading branch information
danielballan authored May 9, 2024
1 parent f9f13ee commit addcda6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 22 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Write the date in place of the "Unreleased" in the case a new version is release

- Propagate setting `include_data_sources` into child nodes.
- Populate attributes in member data variables and coordinates of xarray Datasets.
- Update dependencies.

## v0.1.0a120 (25 April 2024)

Expand Down
27 changes: 5 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ all = [
"awkward >=2.4.3",
"blosc2",
"cachetools",
"cachey",
"click !=8.1.0",
"dask",
"dask[array]",
"dask[dataframe]",
Expand All @@ -76,10 +74,8 @@ all = [
"orjson",
"packaging",
"pandas",
"parquet",
"pillow",
"prometheus_client",
"psutil",
"pyarrow",
"pydantic >=2, <3",
"pydantic-settings >=2, <3",
Expand All @@ -92,10 +88,9 @@ all = [
"sqlalchemy[asyncio] >=2",
"starlette",
"tifffile",
"toolz",
"typer",
"uvicorn[standard]",
"watchgod",
"watchfiles",
"xarray",
"zarr",
"zstandard",
Expand All @@ -110,7 +105,6 @@ client = [
"appdirs",
"awkward >=2.4.3",
"blosc2",
"click !=8.1.0",
"dask[array]",
"dask[dataframe]",
"entrypoints",
Expand All @@ -128,7 +122,8 @@ client = [
"sparse",
"typer",
"xarray",
"zstandard"
"watchfiles",
"zstandard",
]
# These are used by the client/server to more efficiently compress.
# They fall back to gzip (which is slower) if these are not installed.
Expand Down Expand Up @@ -177,15 +172,15 @@ formats = [
# These are the requirements needed for basic client functionality.
minimal-client = [
"appdirs",
"click !=8.1.0",
"entrypoints",
"httpx >=0.20.0,!=0.23.1",
"jsonschema",
"msgpack >=1.0.0",
"orjson",
"pyyaml",
"rich",
"typer"
"typer",
"watchfiles",
]
# These are the requirements needed for basic server functionality.
minimal-server = [
Expand All @@ -195,9 +190,7 @@ minimal-server = [
"anyio",
"appdirs",
"asgi-correlation-id",
"cachey",
"cachetools",
"click !=8.1.0",
"dask",
"fastapi",
"httpx >=0.20.0,!=0.23.1",
Expand All @@ -208,8 +201,6 @@ minimal-server = [
"msgpack >=1.0.0",
"orjson",
"packaging",
"parquet",
"psutil",
"prometheus_client",
"pydantic >=2, <3",
"pydantic-settings >=2, <3",
Expand All @@ -219,10 +210,8 @@ minimal-server = [
"pyyaml",
"sqlalchemy[asyncio] >=2",
"starlette",
"toolz",
"typer",
"uvicorn[standard]",
"watchgod",
"zarr",
]
# This is the "kichen sink" fully-featured server dependency set.
Expand All @@ -237,8 +226,6 @@ server = [
"awkward >=2.4.3",
"blosc2",
"cachetools",
"cachey",
"click !=8.1.0",
"dask",
"dask[array]",
"dask[dataframe]",
Expand All @@ -258,10 +245,8 @@ server = [
"orjson",
"packaging",
"pandas",
"parquet",
"pillow",
"prometheus_client",
"psutil",
"pyarrow",
"pydantic >=2, <3",
"pydantic-settings >=2, <3",
Expand All @@ -273,10 +258,8 @@ server = [
"sqlalchemy[asyncio] >=2",
"starlette",
"tifffile",
"toolz",
"typer",
"uvicorn[standard]",
"watchgod",
"xarray",
"zarr",
"zstandard",
Expand Down

0 comments on commit addcda6

Please sign in to comment.