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 b6c60444aefc8cb2a8a192ba38f59e61a2505ec8 (commit)
via aa993f05dfaa4e12e7c501e14e70e0c2d9861f19 (commit)
from ca89f873c3137c2f47e18fbb435ee0c4af3a3a4a (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/b6c60444aefc8cb2a8a192ba38f59e61a2505ec8
commit b6c60444aefc8cb2a8a192ba38f59e61a2505ec8
Author: Oleg Broytman <ph...@ph...>
Date: Sun Mar 26 03:40:07 2017 +0300
Work with Python 3.6
[skip ci]
diff --git a/devscripts/release b/devscripts/release
index 3043a88..ee492aa 100755
--- a/devscripts/release
+++ b/devscripts/release
@@ -10,7 +10,7 @@ chmod -R a+rX . &&
python setup.py build_py &&
python setup.py register sdist upload --sign &&
-for py in 2.6 2.7 3.4 3.5; do
+for py in 2.6 2.7 3.4 3.5 3.6; do
find build -name '*.py[co]' -delete &&
python$py -m compileall build &&
python$py -O -m compileall build &&
diff --git a/devscripts/run-all-tests b/devscripts/run-all-tests
index 6c1bae6..80b2e1a 100755
--- a/devscripts/run-all-tests
+++ b/devscripts/run-all-tests
@@ -3,7 +3,7 @@
cd "`dirname \"$0\"`"/SQLObject &&
SO_DIR="`dirname $0`"
-for py_ver in 2.6 2.7 3.4 3.5; do
+for py_ver in 2.6 2.7 3.4 3.5 3.6; do
echo "---------- PYTHON $py_ver "$1" ----------"
"$SO_DIR"/cleanup &&
PY_VER=$py_ver "$SO_DIR"/run-tests-"$1" \
diff --git a/devscripts/setup b/devscripts/setup
index 8f4d2f5..315e84a 100755
--- a/devscripts/setup
+++ b/devscripts/setup
@@ -4,7 +4,7 @@ umask 002 # -rwxrwxr-x
cd "`dirname \"$0\"`"/SQLObject &&
python2.6 setup.py install -O2 &&
-for py_ver in 2.7 3.4 3.5; do
+for py_ver in 2.7 3.4 3.5 3.6; do
python$py_ver -m pip install --install-option=-O2 --upgrade .
done &&
http://sourceforge.net/p/sqlobject/sqlobject/ci/aa993f05dfaa4e12e7c501e14e70e0c2d9861f19
commit aa993f05dfaa4e12e7c501e14e70e0c2d9861f19
Author: Oleg Broytman <ph...@ph...>
Date: Sun Mar 26 01:56:20 2017 +0300
Fix tests under Python 3.6 + SQLite memory DB
diff --git a/sqlobject/tests/dbtest.py b/sqlobject/tests/dbtest.py
index 8ddcaa3..ed1cb48 100644
--- a/sqlobject/tests/dbtest.py
+++ b/sqlobject/tests/dbtest.py
@@ -101,7 +101,7 @@ def getConnection(**kw):
conn.debug = True
if conftest.option.show_sql_output:
conn.debugOutput = True
- if conn.dbName == 'sqlite':
+ if (conn.dbName == 'sqlite') and not conn._memory:
speedupSQLiteConnection(conn)
return conn
-----------------------------------------------------------------------
Summary of changes:
devscripts/release | 2 +-
devscripts/run-all-tests | 2 +-
devscripts/setup | 2 +-
sqlobject/tests/dbtest.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
SQLObject development repository
|