From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: gnu: python-sqlalchemy: Update to 1.0.12. Date: Mon, 15 Feb 2016 13:41:22 -0800 Message-ID: <87si0tslbx.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36277) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVQta-0000uq-Gz for guix-devel@gnu.org; Mon, 15 Feb 2016 16:41:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVQtZ-0000vI-JY for guix-devel@gnu.org; Mon, 15 Feb 2016 16:41:26 -0500 Received: from dustycloud.org ([2600:3c02::f03c:91ff:feae:cb51]:60442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVQtZ-0000ug-CK for guix-devel@gnu.org; Mon, 15 Feb 2016 16:41:25 -0500 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 5464D26781 for ; Mon, 15 Feb 2016 16:41:23 -0500 (EST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This also fixes the python / sqlalchemy / sqlite test failure problem. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-python-sqlalchemy-Update-to-1.0.12.patch >From 880e39c230bf9ac956baa0853acf7158481b3ee6 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 15 Feb 2016 13:40:13 -0800 Subject: [PATCH] gnu: python-sqlalchemy: Update to 1.0.12. * gnu/packages/python.scm (python-sqlalchemy): Update to 1.0.12. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 2090d3a..805c4a2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3541,7 +3541,7 @@ routines such as routines for numerical integration and optimization.") (define-public python-sqlalchemy (package (name "python-sqlalchemy") - (version "0.9.7") + (version "1.0.12") (source (origin (method url-fetch) @@ -3549,7 +3549,7 @@ routines such as routines for numerical integration and optimization.") "SQLAlchemy/SQLAlchemy-" version ".tar.gz")) (sha256 (base32 - "059ayifj5l08v6vv56anhyibyllscn10dlzr2fcw68gz1hfjdzsz")))) + "1l8qclhd0s90w3pvwhi5mjxdwr5j7gw7cjka2fx6f2vqmq7f4yb6")))) (build-system python-build-system) (native-inputs `(("python-cython" ,python-cython) ;for c extensions -- 2.6.3 --=-=-=--