From 93e1baf06fa4f3e5e500b8527b0de3feff098823 Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Thu, 13 Dec 2018 15:20:27 +0000 Subject: [PATCH 1/2] Remove instructions for uploading a new release These are internal steps that can only be performed by Pusher employees. --- README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.md b/README.md index 727b705..97186bc 100644 --- a/README.md +++ b/README.md @@ -400,18 +400,6 @@ Limit event name length to 200 chars | ✔ To run the tests run `python setup.py test` -## Making a release - -* Update the CHANGELOG.md file. `git changelog` from the - [git-extras](https://github.com/tj/git-extras/blob/master/Commands.md#git-changelog) package can be useful to pull commits from the release. -* Update the version in version.py -* `git tag v$VERSION` -* `git push && git push --tags` -* `make` - publishes to pypi - -If you get the `error: invalid command 'bdist_wheel'` message on the last step -`pip install wheel` and re-run `make`. - ## License Copyright (c) 2015 Pusher Ltd. See LICENSE for details. From 65cae39fb379c5c56d0c7b5520710fc847302f08 Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Thu, 13 Dec 2018 15:21:36 +0000 Subject: [PATCH 2/2] Remove the Makefile * It was out of date - we should now be using twine instead to publish * It is only Pusher employees that would be able to run it anyway --- Makefile | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index a69ff76..0000000 --- a/Makefile +++ /dev/null @@ -1,5 +0,0 @@ - -publish: - python setup.py sdist bdist_wheel upload - -.PHONY: publish