Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ body:
attributes:
label: Version
description: What version of Earth2Studio are you running?
placeholder: "example: 0.12.1"
placeholder: "example: 0.13.0"
validations:
required: true

Expand Down
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.0a0] - 2026-03-xx
## [0.13.0] - 2026-03-20

### Added

Expand Down Expand Up @@ -39,8 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated GraphCast models to support multiple time inputs, multiple times will be looped not batched
- Renamed `tolerance` parameter in ISD data source to `time_tolerance`

### Deprecated

### Removed

- Removed device from cbottle SR load_model api
Expand All @@ -52,8 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bug in StormCast loading out-of-date model package, introduced in `5518edecbabee371c824b34f0f2ec269a4d6094f`
- Bug in spherical perturbations which did not use lmax from the SHT transform

### Security

### Dependencies

- Added pyarrow explicitly to core dependencies
Expand Down
14 changes: 8 additions & 6 deletions docs/userguide/about/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ and it's recommended that users use an uv project for the best install experienc
```bash
mkdir earth2studio-project && cd earth2studio-project
uv init --python=3.12
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

:::{dropdown} uv Install
Expand Down Expand Up @@ -666,6 +666,8 @@ If your system uses a different CUDA version, you may need to adjust the depende
:::{tab-item} pip

```bash
pip install hatchling
pip install --no-build-isolation "earth2grid @ git+https://github.com/NVlabs/earth2grid@11dcf1b0787a7eb6a8497a3a5a5e1fdcc31232d3"
pip install earth2studio[da-healda]
```

Expand Down Expand Up @@ -821,14 +823,14 @@ the following commands:
```bash
mkdir earth2studio-project && cd earth2studio-project
uv init --python=3.12
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

or if you are already inside an existing uv project:

```bash
uv venv --python=3.12
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
uv add "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

(pytorch_container_environment)=
Expand All @@ -851,7 +853,7 @@ docker run -it -t nvcr.io/nvidia/pytorch:25.12-py3
libeccodes-tools libeccodes-dev
>>> unset PIP_CONSTRAINT
>>> curl -LsSf https://astral.sh/uv/install.sh | sh && source $HOME/.local/bin/env
>>> uv pip install --system --break-system-packages "earth2studio@git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
>>> uv pip install --system --break-system-packages "earth2studio@git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

<!-- markdownlint-disable MD013 -->
Expand All @@ -864,7 +866,7 @@ do with pip, for example:
```bash
uv pip install --system \
--break-system-packages \
"earth2studio[aifs,data]@git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
"earth2studio[aifs,data]@git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

:::
Expand Down Expand Up @@ -893,7 +895,7 @@ package tooling.
conda create -n earth2studio python=3.12
conda activate earth2studio

uv pip install --system --break-system-packages "earth2studio@git+https://github.com/NVIDIA/earth2studio.git@0.12.1"
uv pip install --system --break-system-packages "earth2studio@git+https://github.com/NVIDIA/earth2studio.git@0.13.0"
```

# System Recommendations
Expand Down
2 changes: 1 addition & 1 deletion earth2studio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.13.0a0"
__version__ = "0.13.0rc0"

# Deprecation warnings
# import sys
Expand Down
2 changes: 1 addition & 1 deletion examples/01_deterministic_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/02_diagnostic_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/03_ensemble_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[fcn,perturbation] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[fcn,perturbation] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "scipy>=1.15.2",
# "cartopy",
# ]
Expand Down
2 changes: 1 addition & 1 deletion examples/04_corrdiff_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[corrdiff] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[corrdiff] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/05_ensemble_workflow_extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[dlwp,perturbation] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp,perturbation] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/06_model_perturbation_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/07_seasonal_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[pangu,statistics] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[pangu,statistics] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/08_distributed_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/09_stormcast_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[data,stormcast] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[data,stormcast] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/10_stormcast_ensemble_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[data,stormcast] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[data,stormcast] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/11_huge_ensembles.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[sfno] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[sfno] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/12_temporal_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[sfno,interp-modafno] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[sfno,interp-modafno] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/13_cyclone_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[cyclone,sfno] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[cyclone,sfno] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/14_dlesym_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlesym] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlesym] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/15_cbottle_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[cbottle] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[cbottle] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/16_cbottle_super_resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[cbottle] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[cbottle] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/17_io_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
4 changes: 2 additions & 2 deletions examples/18_ensemble_downscaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
# /// script
# dependencies = [
# "torch==2.9.1", # Match lock file to avoid torch-harmonics issue
# "earth2studio[sfno] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[corrdiff] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[sfno] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "earth2studio[corrdiff] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/19_local_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[aurora] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[aurora] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/20_stormscope_goes_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[data,stormscope] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[data,stormscope] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/21_stormcast_sda.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[da-stormcast] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[da-stormcast] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/22_healda.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[da-healda] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[da-healda] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/extend/01_custom_prognostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""
# /// script
# dependencies = [
# "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "matplotlib",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/extend/02_custom_diagnostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[dlwp] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# ]
# ///
Expand Down
2 changes: 1 addition & 1 deletion examples/extend/03_custom_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"""
# /// script
# dependencies = [
# "earth2studio[fcn] @ git+https://github.com/NVIDIA/earth2studio.git",
# "earth2studio[fcn] @ git+https://github.com/NVIDIA/earth2studio.git@0.13.0",
# "cartopy",
# "scipy",
# ]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ da-stormcast = [
]
# All, must not have conflicts
all = [
"earth2studio[data,perturbation,statistics,utils]",
"earth2studio[data,perturbation,statistics,utils,serve]",
"earth2studio[aifs,aifsens,atlas,aurora,dlesym,dlwp,fcn,fcn3,fengwu,interp-modafno,pangu,stormcast,sfno,stormscope,graphcast]",
"earth2studio[cbottle,climatenet,corrdiff,precip-afno,cyclone,precip-afno-v2,solarradiation-afno,windgust-afno]",
"earth2studio[da-interp,da-stormcast]",
"earth2studio[da-interp,da-stormcast,da-healda]",
]

# ==== UV configuration ====
Expand Down Expand Up @@ -325,7 +325,7 @@ dev = [
"black==24.1.0",
"coverage>=6.5.0",
"interrogate>=1.5.0",
"hatch>=1.14.0",
"hatch>=1.16.5",
"mypy",
"pre-commit",
"pytest>=6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions recipes/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ Run the template
uv run python main.py

>> Hello
>> 0.12.1
>> 0.13.0

uv run python main.py print.hello False

>> 0.12.1
>> 0.13.0
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion recipes/template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Issues = "https://github.com/NVIDIA/earth2studio/issues"
Changelog = "https://github.com/NVIDIA/earth2studio/blob/main/CHANGELOG.md"

[tool.uv.sources]
earth2studio = { git = "https://github.com/NVIDIA/earth2studio", rev = "0.12.1" }
earth2studio = { git = "https://github.com/NVIDIA/earth2studio", rev = "0.13.0" }
omegaconf = { git = "https://github.com/omry/omegaconf.git" }

[tool.hatch.build.targets.sdist]
Expand Down
1 change: 0 additions & 1 deletion test/data/test_arco.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ def test_arco_cache(time, variable, cache):
[
datetime.datetime(year=1939, month=2, day=25),
datetime.datetime(year=1, month=1, day=1, hour=13, minute=1),
datetime.datetime(year=2024, month=1, day=1),
datetime.datetime.now(),
],
)
Expand Down
File renamed without changes.
Loading