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
News
====
+Version 0.3.1 (2017-04-30)
+--------------------------
+
+* Fix release: build scripts with '/usr/bin/env python'
+
Version 0.3.0 (2017-04-30)
--------------------------
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',