mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-07 15:12:56 +08:00
25 lines
616 B
Plaintext
25 lines
616 B
Plaintext
How to make a new release of ``scikits.image``
|
|
==============================================
|
|
|
|
- Update the version number in setup.py and commit
|
|
- Update the docs and api, push upstream using "make gh-pages"
|
|
- Add the version number as a tag in git::
|
|
|
|
git tag v0.5
|
|
|
|
- Push the new meta-data to github::
|
|
|
|
git push --tags origin master
|
|
|
|
- Publish on PyPi:
|
|
|
|
python setup.py sdist upload
|
|
|
|
(not sure if "python setup.py register" is needed before that)
|
|
|
|
- Increase the version number in the setup.py file to ``0.Xdev``.
|
|
|
|
- Update the web frontpage.
|
|
The webpage is kept in a separate repo: scikits.image-web
|
|
|