[tryton-debian-vcs] tryton-proteus branch debian-stretch-3.8 updated. debian/3.8.5-1-4-g735b8db
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:37:11 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-proteus.git;a=commitdiff;h=debian/3.8.5-1-4-g735b8db
commit 735b8db15389f85a24540dafc658f2f2df5d37d5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 14:20:07 2017 +0100
Releasing debian version 3.8.6-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 13636de..4e39a2f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-proteus (3.8.6-1) unstable; urgency=medium
+
+ * Add the actual upstream maintainer key to signing-key.asc.
+ * Merging upstream version 3.8.6.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 11 Nov 2017 14:20:07 +0100
+
tryton-proteus (3.8.5-1) unstable; urgency=medium
* Merging upstream version 3.8.5.
commit 9453456882af072ccc4d83c2f6aeea6eff420e3e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 14:20:07 2017 +0100
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index 9afe66d..f15e278 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: 2010-2016 Cédric Krier
- 2010-2016 B2CK SPRL
+Copyright: 2010-2017 Cédric Krier
+ 2010-2017 B2CK SPRL
License: LGPL-3+
Files: debian/*
commit dc70954b8bd6fa042026cbc1dec9b540cd20af1f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 14:20:07 2017 +0100
Merging upstream version 3.8.6.
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..ae5d7bb
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,4 @@
+image: python2.7
+script:
+ - pip install tox pydot
+ - tox -e py27
diff --git a/CHANGELOG b/CHANGELOG
index fefc03e..9c2ea42 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.6 - 2017-11-07
+* Bug fixes (see mercurial logs for details)
+
Version 3.8.5 - 2016-11-06
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 29bd825..68d11e5 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2010-2016 Cédric Krier.
-Copyright (C) 2010-2016 B2CK SPRL.
+Copyright (C) 2010-2017 Cédric Krier.
+Copyright (C) 2010-2017 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 451328d..8c69922 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 3.8.5
+Version: 3.8.6
Summary: Library to access Tryton server as a client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index 451328d..8c69922 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 3.8.5
+Version: 3.8.6
Summary: Library to access Tryton server as a client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/proteus.egg-info/SOURCES.txt b/proteus.egg-info/SOURCES.txt
index b19dc88..bf445ef 100644
--- a/proteus.egg-info/SOURCES.txt
+++ b/proteus.egg-info/SOURCES.txt
@@ -1,3 +1,5 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
@@ -5,6 +7,7 @@ LICENSE
MANIFEST.in
README
setup.py
+tox.ini
proteus/__init__.py
proteus/config.py
proteus/pyson.py
diff --git a/proteus/__init__.py b/proteus/__init__.py
index 1a454d3..6daac15 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
'''
A library to access Tryton's models like a client.
'''
-__version__ = "3.8.5"
+__version__ = "3.8.6"
__all__ = ['Model', 'Wizard', 'Report']
import sys
try:
@@ -546,6 +546,8 @@ class ModelList(list):
definition = record._fields[self.parent_name]
if definition['type'] in ('many2one', 'reference'):
setattr(record, self.parent_name, self.parent)
+ self.record_removed.difference_update(records)
+ self.record_deleted.difference_update(records)
def append(self, record):
self.__check([record])
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..a25995e
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,10 @@
+[tox]
+envlist = py27,pypy
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+setenv =
+ TRYTOND_DATABASE_URI={env:TRYTOND_DATBASE_URI:sqlite://}
+ DB_NAME={env:DB_NAME::memory:}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
--
tryton-proteus
More information about the tryton-debian-vcs
mailing list