summaryrefslogtreecommitdiff
path: root/prepare-release.sh
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2018-12-31 13:02:57 -0500
committerLeonard Richardson <leonardr@segfault.org>2018-12-31 13:02:57 -0500
commit4a5aa558df5cb6c4920ad6c40aec25d84e5ab9dc (patch)
treec5906980e23d93b2f1492ab6fa35d93cafb5d9e6 /prepare-release.sh
parent75d2d619537da0d3794e08bc562771f5e41d4baf (diff)
Added information to CHANGELOG I forgot to add earlier.
Diffstat (limited to 'prepare-release.sh')
-rw-r--r--prepare-release.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/prepare-release.sh b/prepare-release.sh
index ff3f6c0..729959a 100644
--- a/prepare-release.sh
+++ b/prepare-release.sh
@@ -13,6 +13,18 @@
rm -rf build dist
+# Run this in a Python 2 env and a Python 3 env to make both sdist and
+# wheels.
+python setup.py sdist bdist_wheel
+
+# Run this in Python 3 env.
+twine upload --repository-url https://test.pypi.org/legacy/ dist/*
+
+twine upload dist/*
+
+# Old instructions:
+
+
# Create the 2.x source distro and wheel
python setup.py sdist bdist_wheel