Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compressed-datasets/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/*/*/decompressed.zarr
/*/*/measurements.json
/*/*/*/decompressed.zarr
/*/*/*/measurements.json
4 changes: 2 additions & 2 deletions metrics/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/*/*/metrics.csv
/*/*/tests.csv
/*/*/*/metrics.csv
/*/*/*/tests.csv
/all_results.csv
3 changes: 3 additions & 0 deletions plots/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*.png
/*/*.png
/*/*/*.png
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"astropy~=7.0.1",
"cartopy~=0.24.1",
"cf-xarray~=0.10",
"dask>=2024.12.0,<2025.4",
"matplotlib~=3.8",
"numcodecs>=0.13.0,<0.17",
"numcodecs-combinators[xarray]~=0.2.4",
"numcodecs-observers~=0.1.1",
Expand All @@ -24,6 +26,7 @@ dependencies = [
"numcodecs-wasm-zlib~=0.3.0",
"pandas~=2.2",
"scipy~=1.14",
"seaborn~=0.13.2",
"tabulate~=0.9",
"typed-classproperties~=1.1.0",
"xarray>=2024.11.0,<2025.4",
Expand All @@ -38,6 +41,7 @@ dev = [
"pre-commit~=4.0",
"ruff~=0.9",
"scipy-stubs~=1.15",
"types-seaborn~=0.13.2.20250111",
]

[tool.setuptools.packages.find]
Expand All @@ -47,5 +51,5 @@ where = ["src"]
"climatebenchpress.compressor" = ["py.typed"]

[[tool.mypy.overrides]]
module = ["numcodecs.*", "astropy.convolution.*"]
module = ["numcodecs.*", "astropy.convolution.*", "cartopy.*"]
follow_untyped_imports = true
1 change: 1 addition & 0 deletions src/climatebenchpress/compressor/plotting/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__all__: list[str] = []
Loading
Loading