Skip to content

Commit

Permalink
Increment version to 0.7.5 and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-rose committed Jul 2, 2019
1 parent 5c5a2ae commit 77ac8a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
11 changes: 7 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@ Currently, ``climlab`` has out-of-the-box support and documented examples for
- Convection schemes:
- Emanuel moist convection scheme
- Hard convective adjustment (to constant lapse rate or to moist adiabat)
- Diffusion solvers for moist and dry Energy Balance Models
- 1D Advection-Diffusion solvers
- Moist and dry Energy Balance Models
- Flexible insolation including:
- Seasonal and annual-mean models
- Arbitrary orbital parameters
- Boundary layer scheme including sensible and latent heat fluxes
- Arbitrary combinations of the above, for example:
- 2D latitude-pressure models with radiation, horizontally-varying diffusion, and fixed relative humidity
- 2D latitude-pressure models with radiation, horizontally-varying meridional diffusion, and fixed relative humidity


Installation
Expand All @@ -68,7 +69,6 @@ and then simply do::
conda install climlab

Binaries are available for OSX, Linux, and Windows.
You may need to update your ``numpy`` if you are using are using a version prior to 1.11

Installing from source
~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -84,7 +84,7 @@ Alternatively, clone the source code repository with::

and, from the ``climlab`` directory, do::

python setup.py install
python -m pip install . --no-deps -vv

You will need a Fortran compiler on your system.
The build has been tested with both gcc/gfortran and ifort (Linux)
Expand Down Expand Up @@ -166,6 +166,9 @@ These are self-describing, and should all run out-of-the-box once the package is
Release history
----------------------

Version 0.7.5 (released July 2019)
Bug fix

Version 0.7.4 (released June 2019)
New flexible solver for 1D advection-diffusion processes on non-uniform grids, along with some bug fixes.

Expand Down
2 changes: 1 addition & 1 deletion climlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
has been documented for a comprehensive understanding and traceability.
'''

__version__ = '0.7.5.dev0'
__version__ = '0.7.5'

# this should ensure that we can still import constants.py as climlab.constants
from .utils import constants, thermo, legendre
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.7.5.dev0" %}
{% set version = "0.7.5" %}

package:
name: climlab
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os, sys
import textwrap

VERSION = '0.7.5.dev0'
VERSION = '0.7.5'

# BEFORE importing setuptools, remove MANIFEST. Otherwise it may not be
# properly updated when the contents of directories change (true for distutils,
Expand Down

0 comments on commit 77ac8a8

Please sign in to comment.