1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
How to make a release:
- change version in CHANGES and add release date
- change version in __version__ (elixir/__init__.py)
- change version in setup.py
- change version in setup.cfg (trac link)
- commit
- make tag in subversion
"svn copy http://elixir.ematia.de/svn/elixir/trunk
http://elixir.ematia.de/svn/elixir/tags/%s" % version
- build tar.gz, egg for 2.4 and 2.5 and send them to pypi.
On my system (Unbuntu gutsy):
python2.4 setup.py egg_info -RDb "" register bdist_egg upload
python2.5 setup.py egg_info -RDb "" sdist bdist_egg upload
or, you could also set an alias up like this:
python setup.py alias -u release egg_info -RDb ""
On older systems, you might need to upload the files manually to Pypi.
- announce release on our news page (link to CHANGES)
- announce release on those lists:
- Elixir <sqlelixir@googlegroups.com>
- SQLAlchemy <sqlalchemy@googlegroups.com>
- TurboGears <turbogears@googlegroups.com>
- Python announce <python-announce-list@python.org>
- announce it on freshmeat
|