Skip to content

Commit

Permalink
Merge branch 'main' into joss-paper
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy authored Feb 20, 2024
2 parents 9ea312f + 71e3086 commit 972de31
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
10 changes: 6 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ Regional MOM6 Documentation
===========================

``regional_mom6`` is a Python package for automatic generation of regional
configurations for the Modular Ocean Model 6
configurations for the `Modular Ocean Model 6`_.

.. _Modular Ocean Model 6: https://github.com/mom-ocean/MOM6

.. toctree::
:maxdepth: 1
:caption: Contents:

installation
contributing
api
demos

api
contributing


Indices and tables
==================
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"netCDF4",
"numpy>=1.17.0",
"scipy>=1.2.0",
"xarray",
"xarray<2024.02.0",
"xesmf>=0.8",
"f90nml>=1.4.1",
]
Expand Down
5 changes: 1 addition & 4 deletions regional_mom6/regional_mom6.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
import numpy as np
from itertools import cycle
from pathlib import Path
import dask.array as da
import dask.bag as db
import numpy as np
import xarray as xr
import xesmf as xe
import subprocess
from scipy.ndimage import binary_fill_holes
import netCDF4
from dask.distributed import Client, worker_client
from dask.diagnostics import ProgressBar
import f90nml
import datetime as dt
import warnings
import shutil
import os

from .utils import vecdot

warnings.filterwarnings("ignore")
Expand Down

0 comments on commit 972de31

Please sign in to comment.