Compare commits

..

No commits in common. "7ce9742ed562c0f9924ca1ea710c85f7bcec9eaa" and "f05caf572dca93d8f5b0758b9b5837716146500b" have entirely different histories.

4 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ jobs:
- name: Setup python - name: Setup python
uses: https://github.com/actions/setup-python@v5 uses: https://github.com/actions/setup-python@v5
with: with:
python-version: "3.12" python-version: ${{ matrix.python-version }}
- name: Install uv - name: Install uv
uses: https://github.com/astral-sh/setup-uv@v5 uses: https://github.com/astral-sh/setup-uv@v5
- name: Install corrlib - name: Install corrlib

View file

@ -23,7 +23,7 @@ jobs:
- name: Setup python - name: Setup python
uses: https://github.com/actions/setup-python@v5 uses: https://github.com/actions/setup-python@v5
with: with:
python-version: "3.12" python-version: ${{ matrix.python-version }}
- name: Install uv - name: Install uv
uses: https://github.com/astral-sh/setup-uv@v5 uses: https://github.com/astral-sh/setup-uv@v5
- name: Install corrlib - name: Install corrlib

View file

@ -119,7 +119,7 @@ def _db_lookup(db: str, ensemble: str, correlator_name: str, code: str, project:
def sfcf_filter(results: pd.DataFrame, **kwargs: Any) -> pd.DataFrame: def sfcf_filter(results: pd.DataFrame, **kwargs: Any) -> pd.DataFrame:
r""" """
Filter method for the Database entries holding SFCF calculations. Filter method for the Database entries holding SFCF calculations.
Parameters Parameters

View file

@ -12,7 +12,7 @@ import shutil
from typing import Any from typing import Any
def write_measurement(path: str, ensemble: str, measurement: dict[str, dict[str, dict[str, Any]]], uuid: str, code: str, parameter_file: Union(Any, None)) -> None: def write_measurement(path: str, ensemble: str, measurement: dict[str, dict[str, dict[str, Any]]], uuid: str, code: str, parameter_file: str) -> None:
""" """
Write a measurement to the backlog. Write a measurement to the backlog.
If the file for the measurement already exists, update the measurement. If the file for the measurement already exists, update the measurement.