diff options
author | Leonard Richardson <leonardr@segfault.org> | 2017-01-02 10:01:14 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2017-01-02 10:01:14 -0500 |
commit | e3df6d17390fdb74c783de0ba2afb99c9e8be28e (patch) | |
tree | 665188a9a10930e4a533bbda37ef2dc828ab8c5f /prepare-release.sh | |
parent | d0f1b423e2d6209d20d2f7e6344f3ed2b03e5e8f (diff) |
I need to do another release because of an error while running the release script.
Diffstat (limited to 'prepare-release.sh')
-rw-r--r-- | prepare-release.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/prepare-release.sh b/prepare-release.sh index aaa95a5..d88ff1e 100644 --- a/prepare-release.sh +++ b/prepare-release.sh @@ -102,8 +102,8 @@ rm -rf ../py3-install-test-virtualenv Do the release for real. # Register the project and upload the source distribution and Python 2 wheel. -python setup.py register -r test -python setup.py sdist bdist_wheel upload -r test +python setup.py register +python setup.py sdist bdist_wheel upload # Create a Python 3 environment and install Beautiful Soup # from the source distribution that was just uploaded @@ -118,7 +118,7 @@ echo "EXPECT HTML ON LINE BELOW" # Create and upload a Python 3 wheel from within a virtual environment # that has the Python 3 version of the code. pip install wheel -python3 setup.py bdist_wheel upload -r test +python3 setup.py bdist_wheel upload # Remove the Python 3 virtual environment. deactivate |