Update

Upate code

  1. Go to ICCLIM working directory
  2. View modified files:
$ git status
  1. Add modified file(s):
$ git add f1 f2 f3
  1. Commit modifications:
$ git commit -m "Modifications description"
  1. Push to the remote repository:
$ git push
  1. Repeat steps 3-4-5 if needs until:
$ git status

# On branch master
nothing to commit (working directory clean)

Update documentation

ICCLIM documentation is generated by Sphinx

To update the documentation:

  1. Go to icclim/icclim/icclim_doc/source/
  2. Modify .rst files
  3. Run:
$ make html
  1. “git add-commit-push”

Update version

Change ICCLIM version number in following files:

  1. In icclim/setup.py
  2. In icclim/icclim/__init__.py
  3. In icclim/icclim/icclim_doc/source/conf.py

Then “git add-commit-push”