[tryton-debian-vcs] tryton-modules-account-dunning branch debian-stretch-3.8 updated. debian/3.8.1-1-4-gc28a590
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:29:07 UTC 2017
The following commit has been merged in the debian-stretch-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-dunning.git;a=commitdiff;h=debian/3.8.1-1-4-gc28a590
commit c28a590cb24654fd0b16d9f6de31dcb37a7a6d85
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 13:19:13 2017 +0100
Releasing debian version 3.8.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 4ede111..c0a6ee0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-account-dunning (3.8.2-1) unstable; urgency=medium
+
+ * Add the actual upstream maintainer key to signing-key.asc.
+ * Merging upstream version 3.8.2.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 11 Nov 2017 13:19:13 +0100
+
tryton-modules-account-dunning (3.8.1-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit 620ba0f19ebd562ee1a204466547f9679db66d81
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 13:19:13 2017 +0100
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index dcb2436..49663bc 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,8 +1,8 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
-Copyright: 2013-2016 Cédric Krier
- 2013-2016 B2CK SPRL
+Copyright: 2013-2017 Cédric Krier
+ 2013-2017 B2CK SPRL
License: GPL-3+
Files: debian/*
commit ed7ec0d57770b0f9f52e6c2eb41f3acaaadfbfad
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 13:19:13 2017 +0100
Merging upstream version 3.8.2.
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..9d7c769
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,9 @@
+image: python2.7
+env:
+ - POSTGRESQL_URI=postgresql://postgres@127.0.0.1:5432/
+ - MYSQL_URI=mysql://root@127.0.0.1:3306/
+script:
+ - pip install tox
+ - tox -e "py27-{sqlite,postgresql}"
+services:
+ - postgres
diff --git a/CHANGELOG b/CHANGELOG
index a4af243..99cf947 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.2 - 2017-11-08
+* Bug fixes (see mercurial logs for details)
+
Version 3.8.1 - 2016-12-17
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 20bd036..4d643a0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2013-2016 Cédric Krier.
-Copyright (C) 2013-2016 B2CK SPRL.
+Copyright (C) 2013-2017 Cédric Krier.
+Copyright (C) 2013-2017 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 4aa4327..094d0ee 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_dunning
-Version: 3.8.1
+Version: 3.8.2
Summary: Tryton module for account dunning
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/dunning.py b/dunning.py
index b52a2cd..54f5597 100644
--- a/dunning.py
+++ b/dunning.py
@@ -138,7 +138,7 @@ class Dunning(ModelSQL, ModelView):
@classmethod
def search_line_field(cls, name, clause):
- return [('line.' + name,) + tuple(clause[1:])]
+ return [('line.' + clause[0],) + tuple(clause[1:])]
def get_amount(self, name):
return self.line.debit - self.line.credit
diff --git a/setup.cfg b/setup.cfg
index 861a9f5..8bfd5a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
[egg_info]
tag_build =
tag_date = 0
-tag_svn_revision = 0
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..e9d2876
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,17 @@
+[tox]
+envlist = py27-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+ py27-postgresql: psycopg2 >= 2.0
+ pypy-postgresql: psycopg2cffi >= 2.5
+ mysql: MySQL-python
+setenv =
+ sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
+ postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
+ mysql: TRYTOND_DATABASE_URI={env:MYSQL_URI:mysql://}
+ sqlite: DB_NAME={env:SQLITE_NAME::memory:}
+ postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
+ mysql: DB_NAME={env:MYSQL_NAME:test}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
diff --git a/tryton.cfg b/tryton.cfg
index 42b57e2..6fd2fa8 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.8.1
+version=3.8.2
depends:
account
company
diff --git a/trytond_account_dunning.egg-info/PKG-INFO b/trytond_account_dunning.egg-info/PKG-INFO
index 1a3c2b0..5c89bf6 100644
--- a/trytond_account_dunning.egg-info/PKG-INFO
+++ b/trytond_account_dunning.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-dunning
-Version: 3.8.1
+Version: 3.8.2
Summary: Tryton module for account dunning
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_account_dunning.egg-info/SOURCES.txt b/trytond_account_dunning.egg-info/SOURCES.txt
index 9390556..9feeda6 100644
--- a/trytond_account_dunning.egg-info/SOURCES.txt
+++ b/trytond_account_dunning.egg-info/SOURCES.txt
@@ -1,13 +1,20 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
+__init__.py
+account.py
account.xml
+dunning.py
dunning.xml
+party.py
party.xml
setup.py
+tox.ini
tryton.cfg
./__init__.py
./account.py
@@ -68,7 +75,9 @@ locale/nl_NL.po
locale/pt_BR.po
locale/ru_RU.po
locale/sl_SI.po
+tests/__init__.py
tests/scenario_account_dunning.rst
+tests/test_account_dunning.py
trytond_account_dunning.egg-info/PKG-INFO
trytond_account_dunning.egg-info/SOURCES.txt
trytond_account_dunning.egg-info/dependency_links.txt
--
tryton-modules-account-dunning
More information about the tryton-debian-vcs
mailing list