summaryrefslogtreecommitdiff
path: root/databases/py-sqlalchemy/Makefile
diff options
context:
space:
mode:
authoradam <adam>2016-06-02 10:29:03 +0000
committeradam <adam>2016-06-02 10:29:03 +0000
commit56f39637a05fff18197f881cfff54024e5e03458 (patch)
treed22a5f47c8e4761c35ea21526bf41e54ce6e065a /databases/py-sqlalchemy/Makefile
parent40a366a1eab69ddc793ad16e34325697aa2c777a (diff)
downloadpkgsrc-56f39637a05fff18197f881cfff54024e5e03458.tar.gz
Changes 1.0.13
Fixed bug in “evaluate” strategy of Query.update() and Query.delete() which would fail to accommodate a bound parameter with a “callable” value, as which occurs when filtering by a many-to-one equality expression along a relationship. Fixed bug whereby the event listeners used for backrefs could be inadvertently applied multiple times, when using a deep class inheritance hierarchy in conjunction with mutiple mapper configuration steps. Fixed bug whereby passing a text() construct to the Query.group_by() method would raise an error, instead of intepreting the object as a SQL fragment. Anonymous labeling is applied to a func construct that is passed to column_property(), so that if the same attribute is referred to as a column expression twice the names are de-duped, thus avoiding “ambiguous column” errors. Previously, the .label(None) would need to be applied in order for the name to be de-anonymized. Fixed regression appearing in the 1.0 series in ORM loading where the exception raised for an expected column missing would incorrectly be a NoneType error, rather than the expected NoSuchColumnError.
Diffstat (limited to 'databases/py-sqlalchemy/Makefile')
-rw-r--r--databases/py-sqlalchemy/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile
index 62e7150df25..82610fafa01 100644
--- a/databases/py-sqlalchemy/Makefile
+++ b/databases/py-sqlalchemy/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.18 2016/04/11 09:24:24 adam Exp $
+# $NetBSD: Makefile,v 1.19 2016/06/02 10:29:03 adam Exp $
-DISTNAME= SQLAlchemy-1.0.12
+DISTNAME= SQLAlchemy-1.0.13
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= databases python
-MASTER_SITES= http://pypi.python.org/packages/source/S/SQLAlchemy/
+MASTER_SITES= ${MASTER_SITE_PYPI:=S/SQLAlchemy/}
MAINTAINER= tonnerre@NetBSD.org
HOMEPAGE= http://www.sqlalchemy.org/