Skip to content

Commit

Permalink
add release procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Mar 22, 2016
1 parent 315fc9d commit 6352f33
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions release-procedure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
1. Verify tests on Linux, OS-X, and Windows

2. Update version in setup.py and s3fs/__init__.py and commit

3. Tag the commit

git tag 1.2.3 -m "Version 1.2.3"

4. Push new version bump commit and tag to github

git push dask master --tags

5. Build source and wheel packages

rm -rf dist/
python setup.py sdist bdist_wheel --universal

6. Upload packages to PyPI

twine upload dist/*

0 comments on commit 6352f33

Please sign in to comment.