]> git.phdru.name Git - ppu.git/commitdiff
Fix release: build scripts with '/usr/bin/env python' 0.3.1
authorOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 18:43:31 +0000 (21:43 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 18:45:51 +0000 (21:45 +0300)
[skip ci]

devscripts/release
docs/news.rst
setup.py

index eb89faa6b653eb87c0c96751ed5a4abf084a7da9..357cd2a99b177b84ff992f5d5c256e19b12342ac 100755 (executable)
@@ -6,13 +6,13 @@ chmod -R a+rX . &&
 set-commit-date.py &&
 
 python setup.py build_py &&
-python setup.py build &&
+python setup.py build --executable '/usr/bin/env python' &&
 python setup.py sdist &&
 
 for py in 2.6 2.7 3.4 3.5 3.6; do
    find build -name '*.py[co]' -delete &&
    python$py setup.py build_py &&
-   python$py setup.py build &&
+   python$py setup.py build --executable '/usr/bin/env python' &&
    python$py    -m compileall build &&
    python$py -O -m compileall build &&
    python$py setup.py bdist_egg || exit 1
index 6055cc5a794ec0a42d7850563ba75c7add62e5f6..12852d9f80b03a65b909672fb3a562ed08db7f6f 100644 (file)
@@ -1,6 +1,11 @@
 News
 ====
 
+Version 0.3.1 (2017-04-30)
+--------------------------
+
+* Fix release: build scripts with '/usr/bin/env python'
+
 Version 0.3.0 (2017-04-30)
 --------------------------
 
index afc051f813ea381ea84a8fab4aac9b5cca96e028..97e975e2a41d70ae3c3b012135b89504a115a5a9 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ except ImportError:
     from distutils.core import setup
 
 setup(name='ppu',
-      version='0.3.0',
+      version='0.3.1',
       description='Broytman Portable Python Utilities',
       long_description=open('README.txt', 'rU').read(),
       author='Oleg Broytman',