diff options
author | Leonard Richardson <leonardr@segfault.org> | 2020-05-30 14:30:58 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2020-05-30 14:30:58 -0400 |
commit | b80c4201fc48617742c49411278b1853fb779a35 (patch) | |
tree | 77f96beb168040db4bc16400c6551041a40055a2 /prepare-release.sh | |
parent | cbcb02b752c52fb960f734727cc7de2ecb48ed14 (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.sh | 4 |
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. |