nficano commited on
Commit
f2d9574
·
1 Parent(s): f67406a

standardized release proc

Browse files
Files changed (1) hide show
  1. 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
- Execute the following commands:
 
 
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