[tryton-debian-vcs] tryton-proteus branch upstream-3.2 updated. upstream/3.2.2-1-gf54a98b

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Feb 18 10:07:00 UTC 2015


The following commit has been merged in the upstream-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/3.2.2-1-gf54a98b

commit f54a98be8fdcfe7b6b86ae5c1efe9ff2986ad01a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Feb 18 10:43:44 2015 +0100

    Adding upstream version 3.2.3.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 547df2a..a7221d9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.3 - 2015-02-16
+* Bug fixes (see mercurial logs for details)
+
 Version 3.2.2 - 2014-12-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index c655746..ff16b62 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2010-2014 Cédric Krier.
-Copyright (C) 2010-2014 B2CK SPRL.
+Copyright (C) 2010-2015 Cédric Krier.
+Copyright (C) 2010-2015 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 6b368ef..27eaa6c 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.2
+Version: 3.2.3
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index 6b368ef..27eaa6c 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.2
+Version: 3.2.3
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus/__init__.py b/proteus/__init__.py
index 070cfbc..5e73936 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "3.2.2"
+__version__ = "3.2.3"
 __all__ = ['Model', 'Wizard']
 import sys
 try:
diff --git a/setup.py b/setup.py
index 4f6c48c..e551c36 100644
--- a/setup.py
+++ b/setup.py
@@ -32,6 +32,10 @@ if minor_version % 2:
     download_url = 'hg+http://hg.tryton.org/%s#egg=%s-%s' % (
         name, name, version)
 
+dependency_links = []
+if minor_version % 2:
+    # Add development index for testing with trytond
+    dependency_links.append('https://trydevpi.tryton.org/')
 
 setup(name=name,
     version=version,
@@ -66,6 +70,7 @@ setup(name=name,
         'simplejson': ['simplejson'],
         'cdecimal': ['cdecimal'],
         },
+    dependency_links=dependency_links,
     zip_safe=True,
     test_suite='proteus.tests',
     tests_require=[get_require_version('trytond')],
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list