From b330a3be6e8c7f939953f9fb73eaf444ec91ebdd Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Sun, 29 Mar 2015 23:56:43 -0500 Subject: [PATCH] devguide update --- docs/devguide.rst | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/devguide.rst b/docs/devguide.rst index fc77217da..b2b040e4e 100644 --- a/docs/devguide.rst +++ b/docs/devguide.rst @@ -249,6 +249,35 @@ Maintainence Tasks -------------------- None currently. +----------------------- +Performing the Release +----------------------- +To perform the release, run these commands for the following tasks: + +**pip upload:** + +.. code-block:: bash + + $ ./setup.py sdist upload + + +**conda upload:** + +.. code-block:: bash + + $ rm -f /path/to/conda/conda-bld/src_cache/xonsh.tar.gz + $ conda build --no-test recipe + $ conda convert -p all -o /path/to/conda/conda-bld /path/to/conda/conda-bld/linux-64/xonsh-X.X.X-0.tar.bz2 + $ binstar upload /path/to/conda/conda-bld/*/xonsh-X.X.X*.tar.bz2 + +**website:** + +.. code-block:: bash + + $ cd docs + $ make clean html push-root + + Document History =================== Portions of this page have been forked from the PyNE documentation,