Skip to content

Commit 41162d9

Browse files
committed
Release v1.6.2
1 parent 07c1ead commit 41162d9

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

HOWTO_RELEASE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ How to issue an OGGM release.
55
git pull
66
2. Look over whats-new.rst and the docs. Make sure "What's New" is complete
77
(check the date!) and add a brief summary note describing the release at the
8-
top.
8+
top. Check index.rst to update the version here as well.
99
3. If you have any doubts, run the full test suite one final time!
1010
pytest --run-slow --mpl .
1111
4. On the master branch, commit the release in git:
@@ -14,7 +14,7 @@ How to issue an OGGM release.
1414
git tag -a v1.X.Y -m 'v1.X.Y'
1515
6. Build source and binary wheels for pypi:
1616
git clean -xdf # this deletes all uncommitted changes!
17-
python setup.py bdist_wheel sdist
17+
python -m build
1818
7. Use twine to register and upload the release on pypi. Be careful, you can't
1919
take this back!
2020
twine upload dist/oggm-1.X.Y*
@@ -44,6 +44,6 @@ How to issue an OGGM release.
4444
It should now build automatically.
4545
14. Now the containers: run CI on https://github.com/OGGM/r2d to get the correct
4646
on https://github.com/OGGM/r2d/pkgs/container/r2d. Then update the tag on
47-
https://github.com/OGGM/binder, in the master and stable branch.
47+
https://github.com/OGGM/binder, in the master and stable branch.
4848
On https://hub.oggm.org, create a new environment as well.
4949
15. Issue the release announcement!

docs/index.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ OGGM is above all a modular platform that supports novel modelling workflows,
1414
Our framework is designed to be flexible and adaptable, making it an
1515
ideal tool for a wide range of applications in glaciology and related fields.
1616

17-
**This webpage is for the software documentation**: for general information about the
18-
OGGM project and related news, visit `oggm.org <http://oggm.org>`_. For
19-
the educational platform, visit `edu.oggm.org <http://edu.oggm.org>`_ .
17+
**This webpage is for the software documentation for version 1.6.2**:
18+
19+
- check-out :doc:`whats-new` to read about the updates in this version
20+
- visit `oggm.org <http://oggm.org>`_ for general news
21+
- visit `tutorials.oggm.org <http://tutorials.oggm.org>`_ for the interactive tutorials
22+
- visit `edu.oggm.org <http://edu.oggm.org>`_ for the educational platform
2023

2124
.. admonition:: A note for new users
2225

docs/whats-new.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Version history
44
===============
55

6-
v1.6.2 (unreleased)
7-
-------------------
6+
v1.6.2 (August 25, 2024)
7+
------------------------
88

99
A new minor release of the OGGM with several improvements and bug fixes.
1010
The changes and additions are important, but not fundamental.
@@ -14,7 +14,8 @@ directories are still compatible and can be used with this version.
1414
Some bugs have been fixed however (see below), and if they matter to you,
1515
you may have to reprocess the data yourself or be patient (we aim to
1616
publish a "final" 1.6.X release before the end of the year, which will comprise
17-
updated processed datasets, including a working version of RGI7 repositories).
17+
updated preprocessed repositories, including a working version of RGI7
18+
repositories).
1819

1920
Enhancements
2021
~~~~~~~~~~~~

oggm/core/inversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ def get_inversion_volume(gdir):
631631

632632
@entity_task(log, writes=['inversion_output'])
633633
def compute_velocities(*args, **kwargs):
634-
"""Deprecated. Use compute_inversion_velocities instead."""
634+
"""Deprecated - use compute_inversion_velocities instead."""
635635
warnings.warn("`compute_velocities` has been renamed to "
636636
"`compute_inversion_velocities`. Prefer to use the new"
637637
"name from now on.")

0 commit comments

Comments
 (0)