[tryton-debian-vcs] tryton-modules-account-payment-sepa-cfonb branch upstream updated. upstream/4.4.0-1-gea21ca9

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Fri Nov 10 12:07:31 UTC 2017


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-payment-sepa-cfonb.git;a=commitdiff;h=upstream/4.4.0-1-gea21ca9

commit ea21ca9ce48ec35e124aefc496159ae00a4b2f33
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Nov 6 14:40:29 2017 +0100

    Adding upstream version 4.6.0.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..e0bc2f7
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,51 @@
+clone:
+    hg:
+        image: plugins/hg
+
+pipeline:
+    tox:
+        image: ${IMAGE}
+        environment:
+            - CFLAGS=-O0
+            - DB_CACHE=/cache
+            - TOX_TESTENV_PASSENV=CFLAGS DB_CACHE
+            - POSTGRESQL_URI=postgresql://postgres@postgresql:5432/
+        commands:
+            - pip install tox
+            - tox -e "${TOXENV}-${DATABASE}"
+        volumes:
+            - cache:/root/.cache
+
+services:
+    postgresql:
+        image: postgres
+        when:
+            matrix:
+                DATABASE: postgresql
+
+matrix:
+    include:
+        - IMAGE: python:2.7
+          TOXENV: py27
+          DATABASE: sqlite
+        - IMAGE: python:2.7
+          TOXENV: py27
+          DATABASE: postgresql
+        - IMAGE: python:3.4
+          TOXENV: py34
+          DATABASE: sqlite
+        - IMAGE: python:3.4
+          TOXENV: py34
+          DATABASE: postgresql
+        - IMAGE: python:3.5
+          TOXENV: py35
+          DATABASE: sqlite
+        - IMAGE: python:3.5
+          TOXENV: py35
+          DATABASE: postgresql
+        - IMAGE: python:3.6
+          TOXENV: py36
+          DATABASE: sqlite
+        - IMAGE: python:3.6
+          TOXENV: py36
+          DATABASE: postgresql
diff --git a/CHANGELOG b/CHANGELOG
index a8969ee..6ea5fe3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.6.0 - 2017-10-30
+* Bug fixes (see mercurial logs for details)
+
 Version 4.4.0 - 2017-05-01
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index 02ee8f6..b707f78 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,4 +1,4 @@
-Copyright (C) 2014-2016 Cédric Krier.
+Copyright (C) 2014-2017 Cédric Krier.
 Copyright (C) 2014-2017 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
diff --git a/MANIFEST.in b/MANIFEST.in
index 1ab7918..3edc85a 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -6,6 +6,7 @@ include LICENSE
 include tryton.cfg
 include *.xml
 include view/*.xml
+include *.fodt
 include locale/*.po
 include doc/*
 include tests/*.xsd
diff --git a/PKG-INFO b/PKG-INFO
index 662eced..fa5fc1b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_account_payment_sepa_cfonb
-Version: 4.4.0
+Version: 4.6.0
 Summary: Tryton module for CFONB SEPA payment
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.4/
+Download-URL: http://downloads.tryton.org/4.6/
 Description: trytond_account_payment_sepa_cfonb
         ==================================
         
@@ -69,9 +69,9 @@ Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Office/Business
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/setup.py b/setup.py
index 1176bcd..3a9823e 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,7 @@ setup(name=name,
         ],
     package_data={
         'trytond.modules.account_payment_sepa_cfonb': (info.get('xml', [])
-            + ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
+            + ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.fodt',
                 'icons/*.svg', 'template/*.xml']),
         },
     classifiers=[
@@ -99,9 +99,9 @@ setup(name=name,
         'Natural Language :: Spanish',
         'Operating System :: OS Independent',
         'Programming Language :: Python :: 2.7',
-        'Programming Language :: Python :: 3.3',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Office/Business',
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..527d859
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,18 @@
+[tox]
+envlist = {py27,py34,py35,py36}-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+    {py27,py34,py35,py36}-postgresql: psycopg2 >= 2.5
+    pypy-postgresql: psycopg2cffi >= 2.5
+    mysql: MySQL-python
+    sqlite: sqlitebck
+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 3010d36..1a4b02f 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.4.0
+version=4.6.0
 depends:
     account_payment
     account_payment_sepa
diff --git a/trytond_account_payment_sepa_cfonb.egg-info/PKG-INFO b/trytond_account_payment_sepa_cfonb.egg-info/PKG-INFO
index 1f9317f..2092beb 100644
--- a/trytond_account_payment_sepa_cfonb.egg-info/PKG-INFO
+++ b/trytond_account_payment_sepa_cfonb.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-account-payment-sepa-cfonb
-Version: 4.4.0
+Version: 4.6.0
 Summary: Tryton module for CFONB SEPA payment
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.4/
+Download-URL: http://downloads.tryton.org/4.6/
 Description: trytond_account_payment_sepa_cfonb
         ==================================
         
@@ -69,9 +69,9 @@ Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Office/Business
diff --git a/trytond_account_payment_sepa_cfonb.egg-info/SOURCES.txt b/trytond_account_payment_sepa_cfonb.egg-info/SOURCES.txt
index 0537777..f784a4d 100644
--- a/trytond_account_payment_sepa_cfonb.egg-info/SOURCES.txt
+++ b/trytond_account_payment_sepa_cfonb.egg-info/SOURCES.txt
@@ -1,10 +1,15 @@
+.drone.yml
+.hgtags
 CHANGELOG
 COPYRIGHT
 INSTALL
 LICENSE
 MANIFEST.in
 README
+__init__.py
+payment.py
 setup.py
+tox.ini
 tryton.cfg
 ./__init__.py
 ./payment.py
@@ -18,6 +23,8 @@ doc/index.rst
 template/base-cfonb.xml
 template/pain.001.001.03-cfonb.xml
 template/pain.008.001.02-cfonb.xml
+tests/__init__.py
+tests/test_account_payment_sepa_cfonb.py
 trytond_account_payment_sepa_cfonb.egg-info/PKG-INFO
 trytond_account_payment_sepa_cfonb.egg-info/SOURCES.txt
 trytond_account_payment_sepa_cfonb.egg-info/dependency_links.txt
diff --git a/trytond_account_payment_sepa_cfonb.egg-info/requires.txt b/trytond_account_payment_sepa_cfonb.egg-info/requires.txt
index e71f487..7440135 100644
--- a/trytond_account_payment_sepa_cfonb.egg-info/requires.txt
+++ b/trytond_account_payment_sepa_cfonb.egg-info/requires.txt
@@ -1,8 +1,8 @@
 Genshi
 lxml
-trytond_account_payment >= 4.4, < 4.5
-trytond_account_payment_sepa >= 4.4, < 4.5
-trytond_company >= 4.4, < 4.5
-trytond_bank >= 4.4, < 4.5
-trytond_party >= 4.4, < 4.5
-trytond >= 4.4, < 4.5
+trytond_account_payment >= 4.6, < 4.7
+trytond_account_payment_sepa >= 4.6, < 4.7
+trytond_company >= 4.6, < 4.7
+trytond_bank >= 4.6, < 4.7
+trytond_party >= 4.6, < 4.7
+trytond >= 4.6, < 4.7
-- 
tryton-modules-account-payment-sepa-cfonb



More information about the tryton-debian-vcs mailing list