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 1450275af30b8896373c091e5398fb942c3f1890 (commit)
via 3fac10b6e2434543ff543b2bdff63907f97298dd (commit)
from e7608833bcadbcdef50b01321aeae42e76dfdde1 (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/1450275af30b8896373c091e5398fb942c3f1890
commit 1450275af30b8896373c091e5398fb942c3f1890
Author: Oleg Broytman <ph...@ph...>
Date: Mon Apr 17 22:33:54 2017 +0300
Fix release script (version)
[skip ci]
diff --git a/devscripts/release b/devscripts/release
index 3a6fc74..ee15d01 100755
--- a/devscripts/release
+++ b/devscripts/release
@@ -23,13 +23,17 @@ done
find build -name '*.py[co]' -delete &&
python setup.py bdist_wheel --universal &&
+version=`python setup.py --version`
+. `dirname $0`/split.sh &&
+split_tag $version
+
if [ "$state" = final ]; then
cp -a dist/* "$HOME"/tmp/ &&
rsync -ahP4 dist/* frs.sourceforge.net:/home/frs/project/sqlobject/sqlobject/"$version"/ &&
rsync -ahP4 ANNOUNCE.rst frs.sourceforge.net:/home/frs/project/sqlobject/sqlobject/"$version"/README.rst || exit 1
fi
-twine register dist/SQLObject-"`python setup.py --version`".tar.gz &&
+twine register dist/SQLObject-"$version".tar.gz &&
twine upload --sign dist/* &&
exec rm -rf build dist docs/html SQLObject.egg-info
http://sourceforge.net/p/sqlobject/sqlobject/ci/3fac10b6e2434543ff543b2bdff63907f97298dd
commit 3fac10b6e2434543ff543b2bdff63907f97298dd
Author: Oleg Broytman <ph...@ph...>
Date: Sat Apr 15 20:50:57 2017 +0300
[setup.cfg] Remove outdated ez_setup.py
[skip ci]
diff --git a/setup.cfg b/setup.cfg
index 4c5fd41..d0e62d0 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ tag_date = 1
tag_svn_revision = 0
[flake8]
-exclude = .git,.tox,docs/europython/*.py,ez_setup.py
+exclude = .git,.tox,docs/europython/*.py
# E305: expected 2 blank lines after class or function definition, found 1
ignore = E305
-----------------------------------------------------------------------
Summary of changes:
devscripts/release | 6 +++++-
setup.cfg | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
SQLObject development repository
|