summaryrefslogtreecommitdiff
path: root/prepare-release.sh
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2020-05-30 14:30:58 -0400
committerLeonard Richardson <leonardr@segfault.org>2020-05-30 14:30:58 -0400
commitb80c4201fc48617742c49411278b1853fb779a35 (patch)
tree77f96beb168040db4bc16400c6551041a40055a2 /prepare-release.sh
parentcbcb02b752c52fb960f734727cc7de2ecb48ed14 (diff)
Remove explicit reference to the module name within the module, replacing it with __name__.
Diffstat (limited to 'prepare-release.sh')
-rw-r--r--prepare-release.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/prepare-release.sh b/prepare-release.sh
index 0424ba6..cfcc59b 100644
--- a/prepare-release.sh
+++ b/prepare-release.sh
@@ -15,7 +15,9 @@ 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
+python2 setup.py sdist bdist_wheel
+python3 setup.py sdist bdist_wheel
+
# Run this in Python 3 env.