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 bc58c615babc7a170989e074a6af956e67fe0f1b (commit)
from 9c8dec32f56a8c9115668f5f7f2d42a21753a5fd (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/bc58c615babc7a170989e074a6af956e67fe0f1b
commit bc58c615babc7a170989e074a6af956e67fe0f1b
Author: Oleg Broytman <ph...@ph...>
Date: Sun Feb 4 09:21:16 2018 +0300
Build: Use module returned by imp.load_source() directly
diff --git a/setup.py b/setup.py
index 20c3ff1..4018c69 100755
--- a/setup.py
+++ b/setup.py
@@ -11,8 +11,7 @@ except ImportError:
is_setuptools = False
versionpath = join(abspath(dirname(__file__)), "sqlobject", "__version__.py")
-load_source("sqlobject_version", versionpath)
-from sqlobject_version import version # noqa: ignore flake8 E402
+sqlobject_version = load_source("sqlobject_version", versionpath)
subpackages = ['firebird', 'include', 'include.tests',
'inheritance', 'inheritance.tests',
@@ -69,7 +68,7 @@ if is_setuptools:
kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
setup(name="SQLObject",
- version=version,
+ version=sqlobject_version.version,
description="Object-Relational Manager, aka database wrapper",
long_description="""\
SQLObject is a popular *Object Relational Manager* for providing an
@@ -111,7 +110,8 @@ and `GitHub <https://github.com/sqlobject>`_.
maintainer="Oleg Broytman",
maintainer_email="ph...@ph...",
url="http://sqlobject.org/",
- download_url="https://pypi.python.org/pypi/SQLObject/%s" % version,
+ download_url="https://pypi.python.org/pypi/SQLObject/%s" %
+ sqlobject_version.version,
keywords=["sql", "orm", "object-relational mapper"],
license="LGPL",
platforms="Any",
-----------------------------------------------------------------------
Summary of changes:
setup.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
SQLObject development repository
|