mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
More stuff
This commit is contained in:
parent
b3794dbe97
commit
fea893c706
3 changed files with 5 additions and 3 deletions
|
|
@ -1,5 +1,6 @@
|
|||
coverage
|
||||
flake8
|
||||
invoke
|
||||
iso8601
|
||||
pretend
|
||||
pytest
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
2
tasks.py
2
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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue