Forked from audreyfeldroy/pypi-release-checklist.md
Last active
August 29, 2015 14:16
-
-
Save teserak/66cf4c995e9c97ee2b7d to your computer and use it in GitHub Desktop.
Revisions
-
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -55,5 +55,5 @@ git tag -a 0.1.1 - [x] Push: `git push` - [x] Push tags: `git push --tags` - [x] Check the PyPI listing page to make sure that the README, release notes, and roadmap display properly. If not, copy and paste the RestructuredText into http://rst.ninjs.org/ to find out what broke the formatting. - [x] Edit the release on GitHub (e.g. https://github.com/audreyr/cookiecutter/releases). Paste the release notes into the release's release page, and come up with a title for the release. -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -54,6 +54,6 @@ git tag -a 0.1.1 Put the same message as in HISTORY.rst. - [x] Push: `git push` - [x] Push tags: `git push --tags` - [x] Check the PyPI listing page to make sure that the README, release notes, and roadmap display properly. If not, copy and paste the RestructuredText into http://rst.ninjs.org/ to find out what broke the formatting. - [ ] Edit the release on GitHub (e.g. https://github.com/audreyr/cookiecutter/releases). Paste the release notes into the release's release page, and come up with a title for the release. -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -53,7 +53,7 @@ git tag -a 0.1.1 Put the same message as in HISTORY.rst. - [x] Push: `git push` - [x] Push tags: `git push --tags` - [ ] Check the PyPI listing page to make sure that the README, release notes, and roadmap display properly. If not, copy and paste the RestructuredText into http://rst.ninjs.org/ to find out what broke the formatting. - [ ] Edit the release on GitHub (e.g. https://github.com/audreyr/cookiecutter/releases). Paste the release notes into the release's release page, and come up with a title for the release. -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -52,7 +52,7 @@ git tag -a 0.1.1 ``` Put the same message as in HISTORY.rst. - [x] Push: `git push` - [ ] Push tags: `git push --tags` - [ ] Check the PyPI listing page to make sure that the README, release notes, and roadmap display properly. If not, copy and paste the RestructuredText into http://rst.ninjs.org/ to find out what broke the formatting. - [ ] Edit the release on GitHub (e.g. https://github.com/audreyr/cookiecutter/releases). Paste the release notes into the release's release page, and come up with a title for the release. -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -46,7 +46,7 @@ pip install my_project deactivate ``` - [x] Tag the last git commit with the version number: ``` git tag -a 0.1.1 ``` -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,7 +38,7 @@ deactivate python setup.py sdist upload ``` - [x] Test that it pip installs: ``` mktmpenv pip install my_project -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,7 @@ python setup.py install deactivate ``` - [x] Release on PyPI: ``` python setup.py sdist upload ``` -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,7 +22,7 @@ git commit -m "Release 0.1.1" python setup.py sdist ``` - [x] Test that the sdist installs: ``` mktmpenv cd dist -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,7 +17,7 @@ git add . git commit -m "Release 0.1.1" ``` - [x] Build the source distribution: ``` python setup.py sdist ``` -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python setup.py test tox ``` - [x] Commit the changes: ``` git add . git commit -m "Release 0.1.1" -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ``` python setup.py develop ``` - [x] Run the tests: ``` python setup.py test tox -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [x] Update version number in `setup.py` - [x] Install the package again for local development, but with the new version number: ``` python setup.py develop ``` -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [x] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` python setup.py develop -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` -
audreyfeldroy revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - [x] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - [ ] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ - [x] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` python setup.py develop -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [x] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` python setup.py develop -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ - [x] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` -
audreyfeldroy revised this gist
May 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - [x] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,7 @@ python setup.py install deactivate ``` - [ ] Release on PyPI: ``` python setup.py sdist upload ``` -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,7 +22,7 @@ git commit -m "Release 0.1.1" python setup.py sdist ``` - [ ] Test that the sdist installs: ``` mktmpenv cd dist -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,7 +17,7 @@ git add . git commit -m "Release 0.1.1" ``` - [ ] Build the source distribution: ``` python setup.py sdist ``` -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python setup.py test tox ``` - [ ] Commit the changes: ``` git add . git commit -m "Release 0.1.1" -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ``` python setup.py develop ``` - [ ] Run the tests: ``` python setup.py test tox -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ - [ ] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [ ] Install the package again for local development, but with the new version number: ``` python setup.py develop ``` -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ - [ ] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [ ] Update version number in `setup.py` - [x] Install the package again for local development, but with the new version number: ``` python setup.py develop -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ - [ ] Update HISTORY.rst - [ ] Update version number in `my_project/__init__.py` - [x] Update version number in `setup.py` - [x] Install the package again for local development, but with the new version number: ``` -
audreyfeldroy revised this gist
Apr 27, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - [ ] Update HISTORY.rst - [x] Update version number in `my_project/__init__.py` - [x] Update version number in `setup.py` - [x] Install the package again for local development, but with the new version number:
NewerOlder