Skip to content

Commit

Permalink
Merge pull request #185 from kbandla/pypi_release_docs
Browse files Browse the repository at this point in the history
adding Administrative Notes for PyPI release
  • Loading branch information
brifordwylie committed Jun 15, 2015
2 parents 56c08c7 + ab46d36 commit 5b55332
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
42 changes: 42 additions & 0 deletions docs/admin_notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

Notes
======

PyPI Release How-To
-------------------
Notes and information on how to do the PyPI release for the dpkt project.

Package Requirements
~~~~~~~~~~~~~~~~~~~~

- pip install tox
- pip install wheel

Tox Background
~~~~~~~~~~~~~~
Tox will install the dpkt package into a blank virtualenv and then execute all the tests against the newly installed package. So if everything goes okay, you know the pypi package installed fine and the tests (which pull from the installed dpkt package) also ran okay.

Create the PyPI Release
~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: bash
$ cd dpkt
$ tox
$ vi dpkt/__init__.py and bump the version
$ python setup.py release
<enter your pypi password>
If everything above went okay...

.. code-block:: bash
$ git add dpkt/__init__.py
$ get commit -m "dpkt version 1.8.7 (or whatever)"
$ git tag v1.8.7 (or whatever)
$ git push --tags
$ git push
Git Releases (discussion)
~~~~~~~~~~~~~~~~~~~~~~~~~
You can also do a 'release' on GitHub (the tags above are perfect for that). In general this is discouraged, people should always do a $pip install dpkt. If people want older releases they can do a $pip install dpkt==<old version>. Providing tarballs/zip file on GitHub will just confuse new users and they'll have a 'bad experience' when trying to deal with a tarball.

7 changes: 7 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,10 @@ About dpkt
contributing
license

Administration
===============
.. toctree::
:maxdepth: 2

admin_notes

0 comments on commit 5b55332

Please sign in to comment.