aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-01-07 11:06:51 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-01-07 11:06:51 -0800
commitfea893c7060c57fe5ed9e0f9df58fee5c306681b (patch)
tree038e3d61659f0a11012f29fafdd3f8b5ba4d0703
parentb3794dbe97a6f4e088244adfdd6a06b2d4e185e0 (diff)
downloadcryptography-fea893c7060c57fe5ed9e0f9df58fee5c306681b.tar.gz
cryptography-fea893c7060c57fe5ed9e0f9df58fee5c306681b.tar.bz2
cryptography-fea893c7060c57fe5ed9e0f9df58fee5c306681b.zip
More stuff
-rw-r--r--dev-requirements.txt1
-rw-r--r--docs/doing-a-release.rst5
-rw-r--r--tasks.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt
index 1634de9b..b2a6c79c 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -1,5 +1,6 @@
coverage
flake8
+invoke
iso8601
pretend
pytest
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst
index 77582a48..e52c2728 100644
--- a/docs/doing-a-release.rst
+++ b/docs/doing-a-release.rst
@@ -23,5 +23,6 @@ key in order to do a release. Once this has happened:
* Run ``invoke release {version}``.
-That's all, the release should now be available on PyPI and a tag should be
-available in the repository.
+The release should now be available on PyPI and a tag should be available in
+the repository. You should verify that ``pip install cryptography`` works
+correctly.
diff --git a/tasks.py b/tasks.py
index 5fe28718..ca967f0d 100644
--- a/tasks.py
+++ b/tasks.py
@@ -23,5 +23,5 @@ def release(version):
invoke.run("git tag -s {}".format(version))
invoke.run("git push --tags")
- invoke.run("python setup.py sdist bdist_wheel")
+ invoke.run("python setup.py sdist")
invoke.run("twine upload -s dist/cryptography-{}*".format(version))