Skip to content

Commit 2fc1968

Browse files
authored
Merge pull request #26 from andrewdnolan/update-to-1.0.0
Update to 1.0.0
2 parents 7dfb174 + cd246cb commit 2fc1968

File tree

4 files changed

+36
-10
lines changed

4 files changed

+36
-10
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Mosaic
22

3-
> :warning: **This package in under early development and not ready for production use, yet.**
4-
5-
`mosaic` provides the functionality to visualize unstructured mesh data on it's native grid within `matplotlib`.
6-
Currently `mosaic` only supports MPAS meshes, but future work will add support for other unstructured meshes used in `E3SM`.
3+
`mosaic` provides the functionality to visualize unstructured [MPAS](https://mpas-dev.github.io/)
4+
mesh data on it's native grid within `matplotlib`. Currently MPAS meshes are the
5+
only unstructured meshes used in `E3SM` that `mosaic` supports, but future work
6+
will add support for others.
77

88
## Documentation
99

1010
The latest `mosaic` documentation can be found here:
1111

1212
https://docs.e3sm.org/mosaic/
13+
14+
## Requests for help
15+
16+
If you have any trouble with `mosaic`, especially problems plotting your `MPAS`
17+
mesh of choice, please reach out via [GitHub discussions](https://github.com/E3SM-Project/mosaic/discussions)
18+
under the ["Q&A" category](https://github.com/E3SM-Project/mosaic/discussions/categories/q-a).

docs/index.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,21 @@
22

33
# Mosaic
44

5-
> ⚠️ **This package in under early development and not ready for production use, yet.**
5+
`mosaic` provides the functionality to visualize unstructured [MPAS](https://mpas-dev.github.io/)
6+
mesh data on it's native grid within `matplotlib`. Currently MPAS meshes are the
7+
only unstructured meshes used in `E3SM` that `mosaic` supports, but future work
8+
will add support for others.
69

7-
`mosaic` provides the functionality to visualize unstructured mesh data on it's native grid within `matplotlib`.
8-
Currently `mosaic` only supports [MPAS](https://mpas-dev.github.io/) meshes, but future work will add support for other unstructured meshes used in `E3SM`.
10+
:::{admonition} Please reach out with any problems!
11+
:class: tip
12+
13+
If you have any trouble with `mosaic`, especially problems plotting your `MPAS`
14+
mesh of choice, please reach out via [GitHub discussions](https://github.com/E3SM-Project/mosaic/discussions)
15+
under the ["Q&A" category](https://github.com/E3SM-Project/mosaic/discussions/categories/q-a).
16+
17+
If you suspect you've found a bug in `mosaic` feel free to open an issue on
18+
[GitHub](https://github.com/E3SM-Project/mosaic/issues).
19+
:::
920

1021
```{toctree}
1122
:maxdepth: 2
@@ -23,3 +34,10 @@ developers_guide/quick_start
2334
developers_guide/api
2435
```
2536

37+
```{toctree}
38+
:maxdepth: 1
39+
:hidden:
40+
:caption: Community:
41+
42+
GitHub disscusions <https://github.com/E3SM-Project/mosaic/discussions>
43+
```

mosaic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (0, 2, 0)
1+
__version_info__ = (1, 0, 0)
22
__version__ = '.'.join(str(vi) for vi in __version_info__)

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dependencies = [
2424
"pooch",
2525
"pyproj",
2626
"scipy",
27+
"shapely",
2728
"tqdm",
2829
"xarray",
2930
]
@@ -32,7 +33,7 @@ dependencies = [
3233
docs = [
3334
# building documentation
3435
"sphinx",
35-
"myst-parser",
36+
"myst-nb",
3637
"sphinx-book-theme",
3738
"sphinx-copybutton",
3839
"sphinx-remove-toctrees",
@@ -41,8 +42,9 @@ docs = [
4142
dev = [
4243
# linting and testing
4344
"pip",
45+
"pytest",
46+
"pytest-timeout",
4447
"isort",
45-
"flynt",
4648
"flake8",
4749
"mypy",
4850
"pre-commit",

0 commit comments

Comments
 (0)