Update¶
Upate code¶
- Go to ICCLIM working directory
- View modified files:
$ git status
- Add modified file(s):
$ git add f1 f2 f3
- Commit modifications:
$ git commit -m "Modifications description"
- Push to the remote repository:
$ git push
- 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:
- Go to icclim/icclim/icclim_doc/source/
- Modify .rst files
- Run:
$ make html
- “git add-commit-push”
Update version¶
Change ICCLIM version number in following files:
- In icclim/setup.py
- In icclim/icclim/__init__.py
- In icclim/icclim/icclim_doc/source/conf.py
Then “git add-commit-push”