Skip to content

Commit 8859aeb

Browse files
authored
Merge branch 'develop' into vertical_interpolation_operators
2 parents 3118a16 + 98ee508 commit 8859aeb

File tree

12 files changed

+1431
-38
lines changed

12 files changed

+1431
-38
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repos:
4949
- id: mdformat
5050
exclude: cruft-update-template.md
5151
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
52-
rev: v2.11.0
52+
rev: v2.16.0
5353
hooks:
5454
- id: pretty-format-yaml
5555
args: [--autofix, --preserve-quotes]

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
- pip
77
- numpy
88
- pandas
9-
- earthkit-utils>=0.0.1
9+
- earthkit-utils>=0.2.0
1010
- make
1111
- mypy
1212
- myst-parser

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@ classifiers = [
2828
dynamic = [ "version" ]
2929
dependencies = [
3030
"deprecation",
31-
"earthkit-utils>=0.0.1",
31+
"earthkit-utils>=0.2",
3232
"numpy",
33+
"xarray",
3334
]
3435
optional-dependencies.all = [
35-
"earthkit-meteo[samples]",
36+
"earthkit-meteo[samples,scores]",
3637
]
3738
optional-dependencies.dev = [
3839
"earthkit-meteo[all,docs,test]",
@@ -54,11 +55,14 @@ optional-dependencies.gpu = [
5455
optional-dependencies.samples = [
5556
"requests",
5657
]
58+
optional-dependencies.scores = [
59+
"scores",
60+
]
5761
optional-dependencies.test = [
62+
"earthkit-meteo[samples,scores]",
5863
"netcdf4",
5964
"pytest",
6065
"pytest-cov",
61-
"requests",
6266
"xarray",
6367
]
6468
urls.Documentation = "https://earthkit-meteo.readthedocs.io/"

src/earthkit/meteo/score/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@
1515
planned to work with objects like *earthkit.data FieldLists* or *xarray DataSets*.
1616
"""
1717

18-
from .correlation import * # noqa
19-
from .crps import * # noqa
18+
from .deterministic import *

src/earthkit/meteo/score/correlation.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/earthkit/meteo/score/crps.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)