Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oifs48r1 fix further reading in switch #1097

Merged
merged 28 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9b264f4
Update README.rst
nwieters Oct 25, 2023
952c0b0
Add build.os key to .readthedocs.yml
nwieters Oct 25, 2023
1c439bc
Removed wrong python version key in .readthedocs.yaml
nwieters Oct 30, 2023
08c7ce9
Update .readthedocs.yml
nwieters Oct 30, 2023
efa4717
Update .readthedocs.yml
nwieters Oct 30, 2023
db9122b
Update .rtd_reqs.txt
nwieters Oct 30, 2023
6770994
Update .rtd_reqs.txt
nwieters Oct 30, 2023
cbc2603
Update .readthedocs.yml
nwieters Oct 30, 2023
f0a27b8
Update .readthedocs.yml
nwieters Oct 30, 2023
1c61231
Update .readthedocs.yml
nwieters Oct 30, 2023
0e98279
Update .readthedocs.yml
nwieters Oct 30, 2023
6fc33a4
Update .readthedocs.yml
nwieters Oct 30, 2023
2840ab9
Update .readthedocs.yml
nwieters Oct 30, 2023
209e42d
Update .readthedocs.yml
nwieters Oct 30, 2023
a5553d2
Update .readthedocs.yml
nwieters Oct 30, 2023
797c08e
Update .readthedocs.yml
nwieters Oct 30, 2023
36bc2a0
Update .rtd_reqs.txt
nwieters Oct 30, 2023
2f7feb8
Update README.rst
nwieters Oct 30, 2023
ab6cf82
Update esm_tools_actions_novm.yml
nwieters Nov 2, 2023
a260421
Update esm_tools_actions_novm.yml
nwieters Nov 2, 2023
2806d10
Merge pull request #1089 from esm-tools/fix/github_actions_missing_hdf5
nwieters Nov 3, 2023
fb7c3a0
Merge pull request #1084 from esm-tools/fix/docs_creation
nwieters Nov 3, 2023
16ca9e6
Merge pull request #1083 from esm-tools/nwieters-patch-2
nwieters Nov 6, 2023
7164110
resolve early further reading and copy/check the version between gene…
mandresm Nov 9, 2023
6c5faf1
remove compile_infos from oifs.yaml so that the major_version variabl…
mandresm Nov 9, 2023
fe6339b
Merge branch 'fix/resolve_early_further_reading_and_early_version_in_…
mandresm Nov 9, 2023
c56f127
fix compile
mandresm Nov 9, 2023
2763e2b
Merge branch 'fix/resolve_early_further_reading_and_early_version_in_…
mandresm Nov 9, 2023
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
6 changes: 6 additions & 0 deletions .github/workflows/esm_tools_actions_novm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install libhdf5-dev
run: sudo apt-get install libhdf5-dev

- name: Install libnetcdf-dev
run: sudo apt-get install libnetcdf-dev

- name: add to the path
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
Expand Down
13 changes: 11 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
# Required
version: 2

build:
apt_packages:
- libhdf5-dev
- libnetcdf-dev
os: ubuntu-22.04
tools:
python: "3.7"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
Expand All @@ -19,6 +27,7 @@ formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.7"
install:
- requirements: docs/.rtd_reqs.txt
- requirements: docs/.rtd_reqs.txt
- method: pip
path: .
11 changes: 9 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,27 @@
ESM Tools
=========

Documentation
-------------

.. image:: https://readthedocs.org/projects/esm-tools/badge/?version=latest

For our complete documentation, please check https://esm-tools.readthedocs.io/en/latest/index.html.

How to cite this software
-------------------------
To cite ESM-Tools, please use the following DOI: https://zenodo.org/doi/10.5281/zenodo.3737927. This DOI represents all versions of the software, and will always pointing to the latest version available on https://zenodo.org.


Before you continue
-------------------

You will need python 3 (possibly version 3.6 or newer), a version of git that is not ancient (everything newer than 2.10 should be good), and up-to-date pip (``pip install -U pip``) to install the `esm_tools`. That means that on the supported machines, you could for example use the following settings:

ollie.awi.de::
albedo::

$ module load git
$ module load python3
$ module load python

levante.dkrz.de::

Expand Down
Loading
Loading