[tryton-debian-vcs] tryton-modules-product branch debian updated. debian/3.6.0-1-4-geb9d70d
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Jul 15 14:21:21 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-product.git;a=commitdiff;h=debian/3.6.0-1-4-geb9d70d
commit eb9d70d52a7a04dde72f62a107944fff484b649a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Jul 15 12:52:08 2015 +0200
Releasing debian version 3.6.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 97735a8..8dafa2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-product (3.6.1-1) unstable; urgency=medium
+
+ * Updating year of debian copyright.
+ * Adapting section naming in gbp.conf to current git-buildpackage.
+ * Merging upstream version 3.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 15 Jul 2015 12:52:08 +0200
+
tryton-modules-product (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
commit 7e566edded9e5dc854fcc59fefec5cc1190e3286
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Jul 15 12:52:07 2015 +0200
Merging upstream version 3.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index 031a758..a6ff60a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index df94d82..34c1858 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_product
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module with products
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index 985fd8f..75f97ca 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
ir
res
diff --git a/trytond_product.egg-info/PKG-INFO b/trytond_product.egg-info/PKG-INFO
index 7480821..905d0f3 100644
--- a/trytond_product.egg-info/PKG-INFO
+++ b/trytond_product.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-product
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module with products
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/uom.py b/uom.py
index 95f54f1..cfcdffa 100644
--- a/uom.py
+++ b/uom.py
@@ -1,5 +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.
+from __future__ import division
from decimal import Decimal
from sql import Table
@@ -134,7 +135,11 @@ class Uom(ModelSQL, ModelView):
@staticmethod
def round(number, precision=1.0):
- return round(number / precision) * precision
+ i, d = divmod(precision, 1)
+ base = round(number / precision)
+ # Instead of multiply by the decimal part, we must divide by the
+ # integer to avoid precision lost due to float
+ return (base * i) + ((base / (1 / d)) if d != 0 else 0)
@classmethod
def validate(cls, uoms):
--
tryton-modules-product
More information about the tryton-debian-vcs
mailing list