standardized release proc
Browse files- README.rst +5 -1
README.rst
CHANGED
@@ -198,12 +198,16 @@ Development of this happens on GitHub, patches including tests, documentation ar
|
|
198 |
How to release updates
|
199 |
----------------------
|
200 |
|
201 |
-
|
|
|
|
|
202 |
|
203 |
.. code:: bash
|
204 |
|
205 |
$ git checkout master
|
206 |
$ bumpversion [major|minor|patch]
|
|
|
207 |
$ python setup.py sdist bdist_wheel upload
|
|
|
208 |
$ bumpversion --no-tag patch
|
209 |
$ git push origin master --tags
|
|
|
198 |
How to release updates
|
199 |
----------------------
|
200 |
|
201 |
+
If this is the first time you're releasing to pypi, you'll need to install ``pip install -r tests/dev_requirements.txt``.
|
202 |
+
|
203 |
+
Once complete, execute the following commands:
|
204 |
|
205 |
.. code:: bash
|
206 |
|
207 |
$ git checkout master
|
208 |
$ bumpversion [major|minor|patch]
|
209 |
+
$
|
210 |
$ python setup.py sdist bdist_wheel upload
|
211 |
+
$
|
212 |
$ bumpversion --no-tag patch
|
213 |
$ git push origin master --tags
|