[tryton-debian-vcs] tryton-modules-country branch debian updated. debian/3.4.1-1-2-gbd6e6b6
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Apr 23 16:03:47 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-country.git;a=commitdiff;h=debian/3.4.1-1-2-gbd6e6b6
commit bd6e6b66c6661a73be02063b90754e09a711f03c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Apr 23 16:59:58 2015 +0200
Merging upstream version 3.6.0.
diff --git a/CHANGELOG b/CHANGELOG
index bc30f4b..d017a99 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,7 @@
-Version 3.4.1 - 2015-02-28
+Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
+* Add support for PyPy
+* Remove unique constraints from country name and code
Version 3.4.0 - 2014-10-20
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index e3d86ad..9571edf 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_country
-Version: 3.4.1
+Version: 3.6.0
Summary: Tryton module with countries
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_country
===============
@@ -65,4 +65,6 @@ Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
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
diff --git a/__init__.py b/__init__.py
index 55eb99c..a6d83cf 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,5 +1,5 @@
-#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 trytond.pool import Pool
from .country import *
diff --git a/country.py b/country.py
index 25eef8c..12fcd7d 100644
--- a/country.py
+++ b/country.py
@@ -1,7 +1,9 @@
-#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 trytond.model import ModelView, ModelSQL, fields
from trytond.pyson import Eval
+from trytond.transaction import Transaction
+from trytond import backend
__all__ = ['Country', 'Subdivision', 'Zip']
@@ -20,15 +22,21 @@ class Country(ModelSQL, ModelView):
@classmethod
def __setup__(cls):
super(Country, cls).__setup__()
- cls._sql_constraints += [
- ('name_uniq', 'UNIQUE(name)',
- 'The name of the country must be unique.'),
- ('code_uniq', 'UNIQUE(code)',
- 'The code of the country must be unique.'),
- ]
cls._order.insert(0, ('name', 'ASC'))
@classmethod
+ def __register__(cls, module_name):
+ TableHandler = backend.get('TableHandler')
+ cursor = Transaction().cursor
+ table = TableHandler(cursor, cls, module_name)
+
+ super(Country, cls).__register__(module_name)
+
+ # Migration from 3.4: drop unique constraints from name and code
+ table.drop_constraint('name_uniq')
+ table.drop_constraint('code_uniq')
+
+ @classmethod
def search_rec_name(cls, name, clause):
if cls.search([('code',) + tuple(clause[1:])], limit=1):
return [('code',) + tuple(clause[1:])]
diff --git a/country.xml b/country.xml
index 5ded649..46c25e5 100644
--- a/country.xml
+++ b/country.xml
@@ -60,7 +60,8 @@ this repository contains the full copyright notices and license terms. -->
<record model="ir.action.act_window" id="act_zip_form">
<field name="name">Zip</field>
<field name="res_model">country.zip</field>
- <field name="domain">[('country', 'in', Eval('active_ids'))]</field>
+ <field name="domain"
+ eval="[('country', 'in', Eval('active_ids'))]" pyson="1"/>
</record>
<record model="ir.action.act_window.view" id="act_zip_form_view1">
<field name="sequence" eval="10"/>
diff --git a/locale/bg_BG.po b/locale/bg_BG.po
index 7c4b809..509434d 100644
--- a/locale/bg_BG.po
+++ b/locale/bg_BG.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr ""
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr ""
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Код"
diff --git a/locale/ca_ES.po b/locale/ca_ES.po
index 5f9da1c..fdbc01f 100644
--- a/locale/ca_ES.po
+++ b/locale/ca_ES.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "El codi del pais ha de ser únic."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "El nom del país ha de ser únic."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Codi"
diff --git a/locale/cs_CZ.po b/locale/cs_CZ.po
index 8fc6157..5506ff5 100644
--- a/locale/cs_CZ.po
+++ b/locale/cs_CZ.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr ""
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr ""
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr ""
diff --git a/locale/de_DE.po b/locale/de_DE.po
index cff5cb5..9a53fee 100644
--- a/locale/de_DE.po
+++ b/locale/de_DE.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "Der Code für ein Land kann nur einmal vergeben werden."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "Der Name für ein Land kann nur einmal vergeben werden."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Länderkürzel"
diff --git a/locale/es_AR.po b/locale/es_AR.po
index d3da1af..c3ce6bd 100644
--- a/locale/es_AR.po
+++ b/locale/es_AR.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "El código del país debe ser único."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "El nombre del país debe ser único."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Código"
diff --git a/locale/es_CO.po b/locale/es_CO.po
index 7d5ebb3..e989a7b 100644
--- a/locale/es_CO.po
+++ b/locale/es_CO.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "El código del país debe ser único."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "El nombre del país debe ser único."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Código"
diff --git a/locale/es_EC.po b/locale/es_EC.po
index 7d5ebb3..b7f5ea5 100644
--- a/locale/es_EC.po
+++ b/locale/es_EC.po
@@ -2,25 +2,17 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "El código del país debe ser único."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "El nombre del país debe ser único."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Código"
msgctxt "field:country.country,create_date:"
msgid "Create Date"
-msgstr "Fecha de Creación"
+msgstr "Fecha de creación"
msgctxt "field:country.country,create_uid:"
msgid "Create User"
-msgstr "Creado por Usuario"
+msgstr "Creado por usuario"
msgctxt "field:country.country,id:"
msgid "ID"
@@ -40,11 +32,11 @@ msgstr "Subdivisiones"
msgctxt "field:country.country,write_date:"
msgid "Write Date"
-msgstr "Fecha de Modificación"
+msgstr "Fecha de modificación"
msgctxt "field:country.country,write_uid:"
msgid "Write User"
-msgstr "Modificado por Usuario"
+msgstr "Modificado por usuario"
msgctxt "field:country.subdivision,code:"
msgid "Code"
@@ -56,11 +48,11 @@ msgstr "País"
msgctxt "field:country.subdivision,create_date:"
msgid "Create Date"
-msgstr "Fecha de Creación"
+msgstr "Fecha de creación"
msgctxt "field:country.subdivision,create_uid:"
msgid "Create User"
-msgstr "Creado por Usuario"
+msgstr "Creado por usuario"
msgctxt "field:country.subdivision,id:"
msgid "ID"
@@ -84,11 +76,11 @@ msgstr "Tipo"
msgctxt "field:country.subdivision,write_date:"
msgid "Write Date"
-msgstr "Fecha de Modificación"
+msgstr "Fecha de modificación"
msgctxt "field:country.subdivision,write_uid:"
msgid "Write User"
-msgstr "Modificado por Usuario"
+msgstr "Modificado por usuario"
msgctxt "field:country.zip,city:"
msgid "City"
@@ -100,11 +92,11 @@ msgstr "País"
msgctxt "field:country.zip,create_date:"
msgid "Create Date"
-msgstr "Fecha de Creación"
+msgstr "Fecha de creación"
msgctxt "field:country.zip,create_uid:"
msgid "Create User"
-msgstr "Creado por Usuario"
+msgstr "Creado por usuario"
msgctxt "field:country.zip,id:"
msgid "ID"
@@ -120,15 +112,15 @@ msgstr "Subdivisión"
msgctxt "field:country.zip,write_date:"
msgid "Write Date"
-msgstr "Modificado por Usuario"
+msgstr "Fecha de modificación"
msgctxt "field:country.zip,write_uid:"
msgid "Write User"
-msgstr "Modificado por Usuario"
+msgstr "Modificado por usuario"
msgctxt "field:country.zip,zip:"
msgid "Zip"
-msgstr "Código Postal"
+msgstr "Código postal"
msgctxt "help:country.country,code:"
msgid ""
@@ -628,11 +620,11 @@ msgstr "San Cristobo y Nevis"
msgctxt "model:country.country,name:kp"
msgid "Korea, Democratic People's Republic of"
-msgstr "Corea, República Democrática Popular de"
+msgstr "República Popular Democrática de Corea"
msgctxt "model:country.country,name:kr"
msgid "Korea, Republic of"
-msgstr "Corea, República de"
+msgstr "República de Corea"
msgctxt "model:country.country,name:kw"
msgid "Kuwait"
@@ -720,7 +712,7 @@ msgstr "Islas Marshall"
msgctxt "model:country.country,name:mk"
msgid "Macedonia, Republic of"
-msgstr "Macedonia, República de"
+msgstr "República de Macedonia"
msgctxt "model:country.country,name:ml"
msgid "Mali"
@@ -988,7 +980,7 @@ msgstr "El Salvador"
msgctxt "model:country.country,name:sx"
msgid "Sint Maarten (Dutch part)"
-msgstr "Isla de San Martín (zona holandsea)"
+msgstr "Isla de San Martín (zona holandesa)"
msgctxt "model:country.country,name:sy"
msgid "Syrian Arab Republic"
@@ -1060,7 +1052,7 @@ msgstr "Taiwán, Provincia de China"
msgctxt "model:country.country,name:tz"
msgid "Tanzania, United Republic of"
-msgstr "Tanzania, República unida de"
+msgstr "República unida de Tanzania"
msgctxt "model:country.country,name:ua"
msgid "Ukraine"
@@ -1096,7 +1088,7 @@ msgstr "San Vicente y las Granadinas"
msgctxt "model:country.country,name:ve"
msgid "Venezuela, Bolivarian Republic of"
-msgstr "Venezuela, República Bolivariana de"
+msgstr "República Bolivariana de Venezuela"
msgctxt "model:country.country,name:vg"
msgid "Virgin Islands, British"
@@ -2576,7 +2568,7 @@ msgstr "Liège"
msgctxt "model:country.subdivision,name:be-wlx"
msgid "Luxembourg"
-msgstr "Luxembourg"
+msgstr "Luxemburgo"
msgctxt "model:country.subdivision,name:be-wna"
msgid "Namur"
@@ -20652,7 +20644,7 @@ msgstr "Distrito capital"
msgctxt "selection:country.subdivision,type:"
msgid "Capital Metropolitan City"
-msgstr "Ciudad capital metropolitana"
+msgstr "Ciudad Capital Metropolitana"
msgctxt "selection:country.subdivision,type:"
msgid "Capital Territory"
@@ -20740,7 +20732,7 @@ msgstr "Entidad"
msgctxt "selection:country.subdivision,type:"
msgid "Federal Dependency"
-msgstr "Dependencia federal"
+msgstr "Dependencia Federal"
msgctxt "selection:country.subdivision,type:"
msgid "Federal District"
@@ -20968,4 +20960,4 @@ msgstr "Subdivisiones"
msgctxt "view:country.zip:"
msgid "Zip"
-msgstr "Código Postal"
+msgstr "Código postal"
diff --git a/locale/es_ES.po b/locale/es_ES.po
index 7963e8a..da982fd 100644
--- a/locale/es_ES.po
+++ b/locale/es_ES.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "El código del país debe ser único."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "El nombre del país debe ser único."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Código"
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index eaebcce..6512611 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "Le code du pays doit être unique"
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "Le nom du pays doit être unique."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Code"
diff --git a/locale/nl_NL.po b/locale/nl_NL.po
index 5679c89..d61f6c0 100644
--- a/locale/nl_NL.po
+++ b/locale/nl_NL.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr ""
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr ""
-
#, fuzzy
msgctxt "field:country.country,code:"
msgid "Code"
diff --git a/locale/ru_RU.po b/locale/ru_RU.po
index ff83296..90d8dd6 100644
--- a/locale/ru_RU.po
+++ b/locale/ru_RU.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "Код страны должен быть уникальный."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "Наименование страны должно быть уникальным."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Код страны"
diff --git a/locale/sl_SI.po b/locale/sl_SI.po
index 76a284c..22acbc2 100644
--- a/locale/sl_SI.po
+++ b/locale/sl_SI.po
@@ -2,14 +2,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
-msgctxt "error:country.country:"
-msgid "The code of the country must be unique."
-msgstr "Šifra države mora biti enolična."
-
-msgctxt "error:country.country:"
-msgid "The name of the country must be unique."
-msgstr "Naziv države mora biti enolično."
-
msgctxt "field:country.country,code:"
msgid "Code"
msgstr "Šifra"
@@ -874,6 +866,7 @@ msgctxt "model:country.country,name:pr"
msgid "Puerto Rico"
msgstr "Portoriko"
+#, fuzzy
msgctxt "model:country.country,name:ps"
msgid "Palestine, State of"
msgstr "Palestina, država"
@@ -16514,6 +16507,7 @@ msgctxt "model:country.subdivision,name:se-y"
msgid "Västernorrlands län"
msgstr "Västernorrlands län"
+#, fuzzy
msgctxt "model:country.subdivision,name:se-z"
msgid "Jämtlands län"
msgstr "Jämtlands län"
diff --git a/scripts/countries.py b/scripts/countries.py
index b0c6963..1158d9a 100755
--- a/scripts/countries.py
+++ b/scripts/countries.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.
import sys
import pycountry
@@ -27,7 +27,7 @@ while len(existing_parents) != len(pycountry.subdivisions):
existing_parents)):
continue
new_parents.add(subdivision.code.lower())
- #XXX fix for second level of regional divisions
+ # XXX fix for second level of regional divisions
subdivision.country_code = subdivision.country_code.split(' ', 1)[0]
record = u'''
<record model="country.subdivision" id="%s">
diff --git a/scripts/trytond_import_zip b/scripts/trytond_import_zip
index 1954904..da28e03 100755
--- a/scripts/trytond_import_zip
+++ b/scripts/trytond_import_zip
@@ -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.
import urllib2
import zipfile
import csv
@@ -77,8 +77,8 @@ _fieldnames = ['country', 'postal', 'place', 'name1', 'code1',
'name2', 'code2', 'name3', 'code3', 'latitude', 'longitude', 'accuracy']
-def main(database, password, codes, config_file=None):
- config.set_trytond(database, password=password, config_file=config_file)
+def main(database, codes, config_file=None):
+ config.set_trytond(database, config_file=config_file)
for code in codes:
print >> sys.stderr, code
@@ -88,8 +88,6 @@ def main(database, password, codes, config_file=None):
if __name__ == '__main__':
parser = ArgumentParser()
- parser.add_argument('-p', '--password', dest='password', default='admin',
- help='admin password (default: %(default)s)')
parser.add_argument('-d', '--database', dest='database')
parser.add_argument('-c', '--config', dest='config_file',
help='the trytond config file')
@@ -98,4 +96,4 @@ if __name__ == '__main__':
args = parser.parse_args()
if not args.database:
parser.error('Missing database')
- main(args.database, args.password, args.codes, args.config_file)
+ main(args.database, args.codes, args.config_file)
diff --git a/setup.py b/setup.py
index fb93f71..f0ba0fc 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
@@ -87,6 +87,8 @@ setup(name=name,
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business',
],
license='GPL-3',
diff --git a/tests/__init__.py b/tests/__init__.py
index 80a90bf..e746167 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,5 +1,5 @@
-#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 .test_country import suite
diff --git a/tests/test_country.py b/tests/test_country.py
index 2342452..e011498 100644
--- a/tests/test_country.py
+++ b/tests/test_country.py
@@ -1,23 +1,13 @@
-#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.
import unittest
import trytond.tests.test_tryton
-from trytond.tests.test_tryton import test_view, test_depends
+from trytond.tests.test_tryton import ModuleTestCase
-class CountryTestCase(unittest.TestCase):
+class CountryTestCase(ModuleTestCase):
'Test Country module'
-
- def setUp(self):
- trytond.tests.test_tryton.install_module('country')
-
- def test0005views(self):
- 'Test views'
- test_view('country')
-
- def test0006depends(self):
- 'Test depends'
- test_depends()
+ module = 'country'
def suite():
diff --git a/tryton.cfg b/tryton.cfg
index efff113..1789f1f 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.1
+version=3.6.0
depends:
ir
res
diff --git a/trytond_country.egg-info/PKG-INFO b/trytond_country.egg-info/PKG-INFO
index a2d79ee..93f6c8b 100644
--- a/trytond_country.egg-info/PKG-INFO
+++ b/trytond_country.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-country
-Version: 3.4.1
+Version: 3.6.0
Summary: Tryton module with countries
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_country
===============
@@ -65,4 +65,6 @@ Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
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
diff --git a/trytond_country.egg-info/requires.txt b/trytond_country.egg-info/requires.txt
index d79ae63..8ff8431 100644
--- a/trytond_country.egg-info/requires.txt
+++ b/trytond_country.egg-info/requires.txt
@@ -1,4 +1,4 @@
-trytond >= 3.4, < 3.5
+trytond >= 3.6, < 3.7
[GeoNames]
-proteus >= 3.4, < 3.5
\ No newline at end of file
+proteus >= 3.6, < 3.7
\ No newline at end of file
--
tryton-modules-country
More information about the tryton-debian-vcs
mailing list