Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -31,6 +31,4 @@ jobs:
- name: Build the package
run: uv build
- name: Test with pytest
env:
PYTHONPATH: ${{ github.workspace }}/src
run: uv run pytest
run: uv run pytest tests
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: eso4clima-wp1-prototype
title: ClimaNet
message: >-
If you use this software, please cite it using the
metadata from this file.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# eso4clima-wp1-prototype
# ClimaNet: A Climate Aware Spatio Temporal Encoder Decoder

[![License](https://img.shields.io/github/license/ESMValGroup/eso4clima-wp1-prototype)](https://opensource.org/licenses/Apache-2.0)
[![License](https://img.shields.io/github/license/ESMValGroup/ClimaNet)](https://opensource.org/licenses/Apache-2.0)

## Installation

Expand Down
9 changes: 9 additions & 0 deletions climanet/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from climanet import st_encoder_decoder
from climanet.dataset import STDataset
from climanet.utils import regrid_to_boundary_centered_grid

__all__ = [
"STDataset",
"st_encoder_decoder",
"regrid_to_boundary_centered_grid"
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: "eso4clima-wp1-prototype"
repo_url: https://github.com/ESMValGroup/eso4clima-wp1-prototype/
repo_name: eso4clima-wp1-prototype
site_name: "ClimaNet"
repo_url: https://github.com/ESMValGroup/ClimaNet/
repo_name: ClimaNet

nav:
- Introduction: index.md
Expand Down
Loading