@@ -6,10 +6,9 @@ Releasing
66* Commit the changelog and version changes
77* Tag the release. For example: ``git tag -a 1.0.0 -m 'version 1.0.0' ``
88* Push the commit and tag: ``git push --tags origin master ``
9- * Upload the package to pypi:
9+ * Upload the package to pypi::
1010
1111 python setup.py register
12-
1312 python setup.py sdist upload
1413
1514* Update the docs (see below)
@@ -26,15 +25,15 @@ In order for the extensions to be built and used in the test, run:
2625Building the Docs
2726=================
2827Sphinx is required to build the docs. You probably want to install through apt,
29- if possible:
28+ if possible::
3029
31- $ sudo apt-get install python-sphinx
30+ sudo apt-get install python-sphinx
3231
33- pip may also work:
32+ pip may also work::
3433
35- $ sudo pip install -U Sphinx
34+ sudo pip install -U Sphinx
3635
37- To build the docs, run:
36+ To build the docs, run::
3837
3938 python setup.py doc
4039
@@ -43,9 +42,9 @@ clone a second copy of this repo and leave it on that branch) and copy the entir
4342contents all of ``docs/_build/X.Y.Z/* `` into the root of the ``gh-pages `` branch
4443and then push that branch to github.
4544
46- For example:
45+ For example::
4746
48- $ python setup.py doc
49- $ cp -R docs/_build/1.0.0-beta1/* ~/python-driver-docs/
50- $ cd ~/python-driver-docs
51- $ git push origin gh-pages
47+ python setup.py doc
48+ cp -R docs/_build/1.0.0-beta1/* ~/python-driver-docs/
49+ cd ~/python-driver-docs
50+ git push origin gh-pages
0 commit comments