This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via dd3a93bd6d11a2580789c59f852a9b5f94c1c219 (commit)
from fdf95c96fc2f06719af798c27825d4507f3ab9a8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/dd3a93bd6d11a2580789c59f852a9b5f94c1c219
commit dd3a93bd6d11a2580789c59f852a9b5f94c1c219
Author: Oleg Broytman <ph...@ph...>
Date: Thu Mar 23 02:05:30 2017 +0300
Refactor release script
[skip ci]
diff --git a/devscripts/release b/devscripts/release
index 21ce6e4..3043a88 100755
--- a/devscripts/release
+++ b/devscripts/release
@@ -10,27 +10,15 @@ chmod -R a+rX . &&
python setup.py build_py &&
python setup.py register sdist upload --sign &&
-for py in 6 7; do
+for py in 2.6 2.7 3.4 3.5; do
find build -name '*.py[co]' -delete &&
- python2.$py -m compileall build &&
- python2.$py -O -m compileall build &&
- python2.$py setup.py bdist_egg upload --sign || exit 1
+ python$py -m compileall build &&
+ python$py -O -m compileall build &&
+ python$py setup.py bdist_egg upload --sign || exit 1
done
-version="`python setup.py -V`" &&
-. `dirname $0`/split.sh &&
-split_tag $version
-
-if [ "$major" -ge 3 ]; then
- find build -name '*.py[co]' -delete &&
- python setup.py bdist_wheel --universal upload --sign &&
- for py in 4 5; do
- find build -name '*.py[co]' -delete &&
- python3.$py -m compileall build &&
- python3.$py -O -m compileall build &&
- python3.$py setup.py bdist_egg upload --sign || exit 1
- done
-fi
+find build -name '*.py[co]' -delete &&
+python setup.py bdist_wheel --universal upload --sign &&
if [ "$state" = final ]; then
cp -a dist/* "$HOME"/tmp/ &&
-----------------------------------------------------------------------
Summary of changes:
devscripts/release | 24 ++++++------------------
1 file changed, 6 insertions(+), 18 deletions(-)
hooks/post-receive
--
SQLObject development repository
|