[tryton-debian-vcs] tryton-modules-account-de-skr03 branch debian updated. debian/3.4.0-1-4-g1721e68
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Apr 23 16:00:50 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-account-de-skr03.git;a=commitdiff;h=debian/3.4.0-1-4-g1721e68
commit 1721e682e4bf5c8682ce423b11fbc92665825769
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Apr 23 16:59:48 2015 +0200
Merging upstream version 3.6.0.
diff --git a/CHANGELOG b/CHANGELOG
index c0b51e4..922b076 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+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 c3d6179..27b46fc 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_account_de_skr03
-Version: 3.4.0
+Version: 3.6.0
Summary: Tryton module with German chart of accounts SKR03
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_account_de_skr03
========================
@@ -64,4 +64,6 @@ Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: German
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 :: Financial :: Accounting
diff --git a/__init__.py b/__init__.py
index 93e824d..eb77e5a 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,2 +1,2 @@
-#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.
diff --git a/setup.py b/setup.py
index a3eae2b..9f687fd 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
@@ -59,6 +59,7 @@ setup(name=name,
package_dir={'trytond.modules.account_de_skr03': '.'},
packages=[
'trytond.modules.account_de_skr03',
+ 'trytond.modules.account_de_skr03.tests',
],
package_data={
'trytond.modules.account_de_skr03': (info.get('xml', [])
@@ -76,6 +77,8 @@ setup(name=name,
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business :: Financial :: Accounting',
],
license='GPL-3',
@@ -85,4 +88,6 @@ setup(name=name,
[trytond.modules]
account_de_skr03 = trytond.modules.account_de_skr03
""",
+ test_suite='tests',
+ test_loader='trytond.test_loader:Loader',
)
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..399f52d
--- /dev/null
+++ b/tests/__init__.py
@@ -0,0 +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 .test_account_de_skr03 import suite
+
+__all__ = ['suite']
diff --git a/tests/test_account_de_skr03.py b/tests/test_account_de_skr03.py
new file mode 100644
index 0000000..982527b
--- /dev/null
+++ b/tests/test_account_de_skr03.py
@@ -0,0 +1,17 @@
+# 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 trytond.tests.test_tryton
+from trytond.tests.test_tryton import ModuleTestCase
+
+
+class AccountDESKR03TestCase(ModuleTestCase):
+ 'Test Account DE SKR03 module'
+ module = 'account_de_skr03'
+
+
+def suite():
+ suite = trytond.tests.test_tryton.suite()
+ suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
+ AccountDESKR03TestCase))
+ return suite
diff --git a/tryton.cfg b/tryton.cfg
index 5aa8150..35ec207 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.0
+version=3.6.0
depends:
account
xml:
diff --git a/trytond_account_de_skr03.egg-info/PKG-INFO b/trytond_account_de_skr03.egg-info/PKG-INFO
index fb4481d..6ed22bd 100644
--- a/trytond_account_de_skr03.egg-info/PKG-INFO
+++ b/trytond_account_de_skr03.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-account-de-skr03
-Version: 3.4.0
+Version: 3.6.0
Summary: Tryton module with German chart of accounts SKR03
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_account_de_skr03
========================
@@ -64,4 +64,6 @@ Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: German
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 :: Financial :: Accounting
diff --git a/trytond_account_de_skr03.egg-info/SOURCES.txt b/trytond_account_de_skr03.egg-info/SOURCES.txt
index d146607..388a73a 100644
--- a/trytond_account_de_skr03.egg-info/SOURCES.txt
+++ b/trytond_account_de_skr03.egg-info/SOURCES.txt
@@ -10,6 +10,8 @@ tryton.cfg
./__init__.py
./account_de.xml
./tryton.cfg
+./tests/__init__.py
+./tests/test_account_de_skr03.py
trytond_account_de_skr03.egg-info/PKG-INFO
trytond_account_de_skr03.egg-info/SOURCES.txt
trytond_account_de_skr03.egg-info/dependency_links.txt
diff --git a/trytond_account_de_skr03.egg-info/requires.txt b/trytond_account_de_skr03.egg-info/requires.txt
index f67eaa7..78dc2ad 100644
--- a/trytond_account_de_skr03.egg-info/requires.txt
+++ b/trytond_account_de_skr03.egg-info/requires.txt
@@ -1,2 +1,2 @@
-trytond_account >= 3.4, < 3.5
-trytond >= 3.4, < 3.5
\ No newline at end of file
+trytond_account >= 3.6, < 3.7
+trytond >= 3.6, < 3.7
\ No newline at end of file
--
tryton-modules-account-de-skr03
More information about the tryton-debian-vcs
mailing list