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, 1.6 has been updated
via ae999fbda55cae5e0a9a2666101dda8038f9682e (commit)
via c0ea1c00a09b8eeb5375b5c2b0edf0a891fab3b7 (commit)
from 73432002e2a779fb7cc537dfbe62931c3e257033 (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/ae999fbda55cae5e0a9a2666101dda8038f9682e
commit ae999fbda55cae5e0a9a2666101dda8038f9682e
Author: Oleg Broytman <ph...@ph...>
Date: Sun Dec 14 16:55:06 2014 +0300
Support for Python 2.5 has been declared obsolete
diff --git a/sqlobject/main.py b/sqlobject/main.py
index 558cb2d..acf1b87 100644
--- a/sqlobject/main.py
+++ b/sqlobject/main.py
@@ -648,8 +648,8 @@ def deprecated(message, level=1, stacklevel=2):
if warnings_level is not None and warnings_level <= level:
warnings.warn(message, DeprecationWarning, stacklevel=stacklevel)
-#if sys.version_info[:3] < (2, 5, 0):
-# deprecated("Support for Python 2.4 has been declared obsolete and will be removed in the next release of SQLObject")
+if sys.version_info[:3] < (2, 6, 0):
+ deprecated("Support for Python 2.5 has been declared obsolete and will be removed in the next release of SQLObject")
def setDeprecationLevel(warning=1, exception=None):
"""
http://sourceforge.net/p/sqlobject/sqlobject/ci/c0ea1c00a09b8eeb5375b5c2b0edf0a891fab3b7
commit c0ea1c00a09b8eeb5375b5c2b0edf0a891fab3b7
Author: Oleg Broytman <ph...@ph...>
Date: Sun Dec 14 16:53:57 2014 +0300
SQLObject supports Python 2.5+
diff --git a/setup.py b/setup.py
index 9929838..ce3c825 100755
--- a/setup.py
+++ b/setup.py
@@ -110,7 +110,7 @@ easy to use and quick to get started with.
It currently supports MySQL through the `MySQLdb` package, PostgreSQL
through the `psycopg` package, SQLite, Firebird, MaxDB (SAP DB), MS SQL
-Sybase and Rdbhost. It should support Python versions back to 2.4.
+Sybase and Rdbhost. It should support Python versions back to 2.5.
Where is SQLObject
-----------------------------------------------------------------------
Summary of changes:
setup.py | 2 +-
sqlobject/main.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
SQLObject development repository
|