[tryton-debian-vcs] tryton-modules-account-statement branch debian-stretch-3.8 updated. debian/3.8.2-1-2-gf472582

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:29:53 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-statement.git;a=commitdiff;h=debian/3.8.2-1-2-gf472582

commit f472582bfc5b6dbca2221df28b18215f9c41f483
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 11 13:32:04 2017 +0100

    Releasing debian version 3.8.3-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index a7fe007..cdae810 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-account-statement (3.8.3-1) unstable; urgency=medium
+
+  * Merging upstream version 3.8.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sat, 11 Nov 2017 13:32:04 +0100
+
 tryton-modules-account-statement (3.8.2-1) unstable; urgency=medium
 
   * Add the actual upstream maintainer key to signing-key.asc.
commit d5a5461dc27f1edfbe0f45f974683fc821fb9d6b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 11 13:32:04 2017 +0100

    Merging upstream version 3.8.3.

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 d701fa4..c84ff77 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.3 - 2017-11-08
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.2 - 2017-07-01
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 2b45087..8b8b2c8 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account_statement
-Version: 3.8.2
+Version: 3.8.3
 Summary: Tryton module with account statements
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/statement.py b/statement.py
index cfce1df..c310b32 100644
--- a/statement.py
+++ b/statement.py
@@ -790,7 +790,7 @@ class LineGroup(ModelSQL, ModelView):
 
     @classmethod
     def search_journal(cls, name, clause):
-        return [('statement.journal',) + tuple(clause[1:])]
+        return [('statement.' + clause[0],) + tuple(clause[1:])]
 
     def get_currency(self, name):
         return self.statement.journal.currency.id
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 313b317..d7f0d76 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.8.2
+version=3.8.3
 depends:
     account
     account_invoice
diff --git a/trytond_account_statement.egg-info/PKG-INFO b/trytond_account_statement.egg-info/PKG-INFO
index 0db0234..bbcea75 100644
--- a/trytond_account_statement.egg-info/PKG-INFO
+++ b/trytond_account_statement.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-account-statement
-Version: 3.8.2
+Version: 3.8.3
 Summary: Tryton module with account statements
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/trytond_account_statement.egg-info/SOURCES.txt b/trytond_account_statement.egg-info/SOURCES.txt
index 8dc98f5..2dc9db3 100644
--- a/trytond_account_statement.egg-info/SOURCES.txt
+++ b/trytond_account_statement.egg-info/SOURCES.txt
@@ -1,13 +1,20 @@
+.drone.yml
+.hgtags
 CHANGELOG
 COPYRIGHT
 INSTALL
 LICENSE
 MANIFEST.in
 README
+__init__.py
+account.py
+journal.py
 journal.xml
 setup.py
 statement.odt
+statement.py
 statement.xml
+tox.ini
 tryton.cfg
 ./__init__.py
 ./account.py
@@ -66,7 +73,9 @@ locale/nl_NL.po
 locale/pt_BR.po
 locale/ru_RU.po
 locale/sl_SI.po
+tests/__init__.py
 tests/scenario_account_statement.rst
+tests/test_account_statement.py
 trytond_account_statement.egg-info/PKG-INFO
 trytond_account_statement.egg-info/SOURCES.txt
 trytond_account_statement.egg-info/dependency_links.txt
-- 
tryton-modules-account-statement



More information about the tryton-debian-vcs mailing list