From d77ae971c34551069ed9111c9d3f0bda85c28ea0 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 30 Apr 2017 21:43:31 +0300 Subject: [PATCH] Fix release: build scripts with '/usr/bin/env python' [skip ci] --- devscripts/release | 4 ++-- docs/news.rst | 5 +++++ setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/devscripts/release b/devscripts/release index eb89faa..357cd2a 100755 --- a/devscripts/release +++ b/devscripts/release @@ -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 diff --git a/docs/news.rst b/docs/news.rst index 6055cc5..12852d9 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -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) -------------------------- diff --git a/setup.py b/setup.py index afc051f..97e975e 100755 --- 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', -- 2.39.2