[tryton-debian-vcs] tryton-modules-sale-credit-limit branch debian updated. debian/3.4.1-1-2-gee44526

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Apr 23 16:06:00 UTC 2015


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-credit-limit.git;a=commitdiff;h=debian/3.4.1-1-2-gee44526

commit ee44526209e2145730d0c383580a4a667c95a7d2
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Apr 23 17:00:05 2015 +0200

    Merging upstream version 3.6.0.

diff --git a/CHANGELOG b/CHANGELOG
index a9b0397..24733d1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,6 @@
-Version 3.4.1 - 2015-02-21
+Version 3.6.0 - 2015-04-20
 * Bug fixes (see mercurial logs for details)
-
+* Add support for PyPy
 Version 3.4.0 - 2014-10-20
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index ef365c5..05cc40c 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_sale_credit_limit
-Version: 3.4.1
+Version: 3.6.0
 Summary: Tryton module for sale credit limit
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.4/
+Download-URL: http://downloads.tryton.org/3.6/
 Description: trytond_sale_credit_limit
         =========================
         
@@ -64,5 +64,7 @@ Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Office/Business
 Classifier: Topic :: Office/Business :: Financial :: Accounting
diff --git a/__init__.py b/__init__.py
index dd6ac8b..022e1f1 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,5 +1,5 @@
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 
 from trytond.pool import Pool
 from party import *
diff --git a/party.py b/party.py
index cc59ddb..c80ed9a 100644
--- a/party.py
+++ b/party.py
@@ -1,5 +1,5 @@
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 from trytond.pool import Pool, PoolMeta
 from trytond.transaction import Transaction
 
diff --git a/sale.py b/sale.py
index 134549d..2cdee82 100644
--- a/sale.py
+++ b/sale.py
@@ -1,5 +1,5 @@
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 from trytond.pool import PoolMeta
 
 __all__ = ['Sale']
diff --git a/setup.py b/setup.py
index 1dabf16..33af224 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 
 from setuptools import setup
 import re
@@ -85,6 +85,8 @@ setup(name=name,
         'Natural Language :: Spanish',
         'Operating System :: OS Independent',
         'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: Implementation :: CPython',
+        'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Office/Business',
         'Topic :: Office/Business :: Financial :: Accounting',
         ],
diff --git a/tests/__init__.py b/tests/__init__.py
index 1020777..8358e36 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,4 +1,6 @@
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 
 from test_sale_credit_limit import suite
+
+__all__ = ['suite']
diff --git a/tests/test_sale_credit_limit.py b/tests/test_sale_credit_limit.py
index 4bfa31c..bf9572f 100644
--- a/tests/test_sale_credit_limit.py
+++ b/tests/test_sale_credit_limit.py
@@ -1,20 +1,21 @@
-#This file is part of Tryton.  The COPYRIGHT file at the top level of
-#this repository contains the full copyright notices and license terms.
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
 import unittest
 import doctest
 from decimal import Decimal
 import trytond.tests.test_tryton
-from trytond.tests.test_tryton import install_module, test_depends
+from trytond.tests.test_tryton import ModuleTestCase
 from trytond.tests.test_tryton import POOL, DB_NAME, USER, CONTEXT
 from trytond.transaction import Transaction
 from trytond.exceptions import UserWarning
 
 
-class SaleCreditLimitTestCase(unittest.TestCase):
+class SaleCreditLimitTestCase(ModuleTestCase):
     'Test SaleCreditLimit module'
+    module = 'sale_credit_limit'
 
     def setUp(self):
-        install_module('sale_credit_limit')
+        super(SaleCreditLimitTestCase, self).setUp()
         self.account = POOL.get('account.account')
         self.move = POOL.get('account.move')
         self.period = POOL.get('account.period')
@@ -27,10 +28,6 @@ class SaleCreditLimitTestCase(unittest.TestCase):
         self.property = POOL.get('ir.property')
         self.model_field = POOL.get('ir.model.field')
 
-    def test0006depends(self):
-        'Test depends'
-        test_depends()
-
     def test0010check_credit_limit(self):
         'Test check_credit_limit'
         with Transaction().start(DB_NAME, USER, context=CONTEXT):
diff --git a/tryton.cfg b/tryton.cfg
index 6b01f19..c7f55fe 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.4.1
+version=3.6.0
 depends:
     ir
     account_credit_limit
diff --git a/trytond_sale_credit_limit.egg-info/PKG-INFO b/trytond_sale_credit_limit.egg-info/PKG-INFO
index af01b48..c56474e 100644
--- a/trytond_sale_credit_limit.egg-info/PKG-INFO
+++ b/trytond_sale_credit_limit.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-sale-credit-limit
-Version: 3.4.1
+Version: 3.6.0
 Summary: Tryton module for sale credit limit
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.4/
+Download-URL: http://downloads.tryton.org/3.6/
 Description: trytond_sale_credit_limit
         =========================
         
@@ -64,5 +64,7 @@ Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Office/Business
 Classifier: Topic :: Office/Business :: Financial :: Accounting
diff --git a/trytond_sale_credit_limit.egg-info/requires.txt b/trytond_sale_credit_limit.egg-info/requires.txt
index 2f332fb..4182d3b 100644
--- a/trytond_sale_credit_limit.egg-info/requires.txt
+++ b/trytond_sale_credit_limit.egg-info/requires.txt
@@ -1,6 +1,6 @@
-trytond_account_credit_limit >= 3.4, < 3.5
-trytond_sale >= 3.4, < 3.5
-trytond_currency >= 3.4, < 3.5
-trytond_account_invoice >= 3.4, < 3.5
-trytond_company >= 3.4, < 3.5
-trytond >= 3.4, < 3.5
\ No newline at end of file
+trytond_account_credit_limit >= 3.6, < 3.7
+trytond_sale >= 3.6, < 3.7
+trytond_currency >= 3.6, < 3.7
+trytond_account_invoice >= 3.6, < 3.7
+trytond_company >= 3.6, < 3.7
+trytond >= 3.6, < 3.7
\ No newline at end of file
-- 
tryton-modules-sale-credit-limit



More information about the tryton-debian-vcs mailing list