Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package trytond_party for openSUSE:Factory checked in at 2024-12-02 16:59:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_party (Old) and /work/SRC/openSUSE:Factory/.trytond_party.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_party" Mon Dec 2 16:59:31 2024 rev:17 rq:1227713 version:6.0.7 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_party/trytond_party.changes 2024-05-07 18:03:59.995807620 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_party.new.28523/trytond_party.changes 2024-12-02 17:00:02.983508036 +0100 @@ -1,0 +2,5 @@ +Mon Dec 2 10:02:44 UTC 2024 - Axel Braun <[email protected]> + +- Version 6.0.7 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_party-6.0.6.tar.gz New: ---- trytond_party-6.0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_party.spec ++++++ --- /var/tmp/diff_new_pack.0ByW33/_old 2024-12-02 17:00:03.739540022 +0100 +++ /var/tmp/diff_new_pack.0ByW33/_new 2024-12-02 17:00:03.739540022 +0100 @@ -29,7 +29,7 @@ %define majorver 6.0 Name: trytond_party -Version: %{majorver}.6 +Version: %{majorver}.7 Release: 0 Summary: The "party" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_party-6.0.6.tar.gz -> trytond_party-6.0.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/.readthedocs.yaml new/trytond_party-6.0.7/.readthedocs.yaml --- old/trytond_party-6.0.6/.readthedocs.yaml 2023-08-06 19:28:07.000000000 +0200 +++ new/trytond_party-6.0.7/.readthedocs.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,7 +0,0 @@ -version: 2 -build: - os: ubuntu-22.04 - tools: - python: "3" -sphinx: - configuration: modules/party/doc/conf.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/CHANGELOG new/trytond_party-6.0.7/CHANGELOG --- old/trytond_party-6.0.6/CHANGELOG 2024-03-03 13:23:33.000000000 +0100 +++ new/trytond_party-6.0.7/CHANGELOG 2024-11-06 21:42:22.000000000 +0100 @@ -1,4 +1,9 @@ +Version 6.0.7 - 2024-11-06 +-------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.6 - 2024-03-03 -------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/PKG-INFO new/trytond_party-6.0.7/PKG-INFO --- old/trytond_party-6.0.6/PKG-INFO 2024-03-03 13:23:36.704064000 +0100 +++ new/trytond_party-6.0.7/PKG-INFO 2024-11-06 21:42:24.903895900 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_party -Version: 6.0.6 +Version: 6.0.7 Summary: Tryton module with parties and addresses Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -8,7 +8,7 @@ Author-email: [email protected] License: GPL-3 Project-URL: Bug Tracker, https://bugs.tryton.org/ -Project-URL: Documentation, https://docs.tryton.org/projects/modules-party/ +Project-URL: Documentation, https://docs.tryton.org/modules-party/ Project-URL: Forum, https://www.tryton.org/forum Project-URL: Source Code, https://hg.tryton.org/modules/party Keywords: tryton party diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/address.py new/trytond_party-6.0.7/address.py --- old/trytond_party-6.0.6/address.py 2023-07-10 23:30:28.000000000 +0200 +++ new/trytond_party-6.0.7/address.py 2024-10-29 22:54:53.000000000 +0100 @@ -112,14 +112,20 @@ @fields.depends('city', methods=['_autocomplete_domain']) def autocomplete_postal_code(self): - domain = self._autocomplete_domain() + domain = [ + self._autocomplete_domain(), + ('postal_code', 'not in', [None, '']), + ] if self.city: domain.append(('city', 'ilike', '%%%s%%' % self.city)) return self._autocomplete_search(domain, 'postal_code') @fields.depends('postal_code', methods=['_autocomplete_domain']) def autocomplete_city(self): - domain = self._autocomplete_domain() + domain = [ + self._autocomplete_domain(), + ('city', 'not in', [None, '']), + ] if self.postal_code: domain.append(('postal_code', 'ilike', '%s%%' % self.postal_code)) return self._autocomplete_search(domain, 'city') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/doc/conf.py new/trytond_party-6.0.7/doc/conf.py --- old/trytond_party-6.0.6/doc/conf.py 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_party-6.0.7/doc/conf.py 2024-03-03 19:00:05.000000000 +0100 @@ -9,8 +9,8 @@ trytond_url = base_url + '/server/' else: modules_url = ( - 'https://docs.tryton.org/projects/modules-{module}/en/{series}/') - trytond_url = 'https://docs.tryton.org/projects/server/en/{series}/' + 'https://docs.tryton.org/${series}/modules-{module}/') + trytond_url = 'https://docs.tryton.org/${series}/server/' def get_info(): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/setup.py new/trytond_party-6.0.7/setup.py --- old/trytond_party-6.0.6/setup.py 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_party-6.0.7/setup.py 2024-03-03 19:00:05.000000000 +0100 @@ -61,7 +61,7 @@ download_url=download_url, project_urls={ "Bug Tracker": 'https://bugs.tryton.org/', - "Documentation": 'https://docs.tryton.org/projects/modules-party/', + "Documentation": 'https://docs.tryton.org/modules-party/', "Forum": 'https://www.tryton.org/forum', "Source Code": 'https://hg.tryton.org/modules/party', }, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/tox.ini new/trytond_party-6.0.7/tox.ini --- old/trytond_party-6.0.6/tox.ini 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_party-6.0.7/tox.ini 2024-09-13 16:34:34.000000000 +0200 @@ -4,6 +4,7 @@ [testenv] commands = {envpython} setup.py test deps = + setuptools<72 {py36,py37,py38,py39}-postgresql: psycopg2 >= 2.5 pypy3-postgresql: psycopg2cffi >= 2.5 py36-sqlite: sqlitebck diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/tryton.cfg new/trytond_party-6.0.7/tryton.cfg --- old/trytond_party-6.0.6/tryton.cfg 2024-02-15 19:35:46.000000000 +0100 +++ new/trytond_party-6.0.7/tryton.cfg 2024-03-03 13:23:44.000000000 +0100 @@ -1,5 +1,5 @@ [tryton] -version=6.0.6 +version=6.0.7 depends: country ir diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/trytond_party.egg-info/PKG-INFO new/trytond_party-6.0.7/trytond_party.egg-info/PKG-INFO --- old/trytond_party-6.0.6/trytond_party.egg-info/PKG-INFO 2024-03-03 13:23:36.000000000 +0100 +++ new/trytond_party-6.0.7/trytond_party.egg-info/PKG-INFO 2024-11-06 21:42:24.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_party -Version: 6.0.6 +Version: 6.0.7 Summary: Tryton module with parties and addresses Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -8,7 +8,7 @@ Author-email: [email protected] License: GPL-3 Project-URL: Bug Tracker, https://bugs.tryton.org/ -Project-URL: Documentation, https://docs.tryton.org/projects/modules-party/ +Project-URL: Documentation, https://docs.tryton.org/modules-party/ Project-URL: Forum, https://www.tryton.org/forum Project-URL: Source Code, https://hg.tryton.org/modules/party Keywords: tryton party diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_party-6.0.6/trytond_party.egg-info/SOURCES.txt new/trytond_party-6.0.7/trytond_party.egg-info/SOURCES.txt --- old/trytond_party-6.0.6/trytond_party.egg-info/SOURCES.txt 2024-03-03 13:23:36.000000000 +0100 +++ new/trytond_party-6.0.7/trytond_party.egg-info/SOURCES.txt 2024-11-06 21:42:24.000000000 +0100 @@ -1,4 +1,3 @@ -.readthedocs.yaml CHANGELOG COPYRIGHT LICENSE
