odoo-addon-base-view-inheritance-extension 17.0.1.0.1__py3-none-any.whl → 17.0.1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  =========================
2
6
  Extended view inheritance
3
7
  =========================
@@ -7,13 +11,13 @@ Extended view inheritance
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:40e4b7b41dc5bf755dd39eedafb3e373b93138ec06e6e21c52c55857a4f28dd5
14
+ !! source digest: sha256:32445a96710100723618a7a88b44330e5d7bcad128b2ad3bcf08c3844ef7c3f7
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Mature
16
- .. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18
22
  :alt: License: LGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
@@ -75,7 +79,7 @@ conditional changes**
75
79
  Known issues / Roadmap
76
80
  ======================
77
81
 
78
- - Support an ``eval`` attribute for our new node types.
82
+ - Support an ``eval`` attribute for our new node types.
79
83
 
80
84
  Bug Tracker
81
85
  ===========
@@ -98,14 +102,14 @@ Authors
98
102
  Contributors
99
103
  ------------
100
104
 
101
- - Holger Brunn <hbrunn@therp.nl>
102
- - Ronald Portier <rportier@therp.nl>
103
- - `Tecnativa <https://www.tecnativa.com>`__:
105
+ - Holger Brunn <hbrunn@therp.nl>
106
+ - Ronald Portier <rportier@therp.nl>
107
+ - `Tecnativa <https://www.tecnativa.com>`__:
104
108
 
105
- - Sergio Teruel
106
- - Carlos Dauden
109
+ - Sergio Teruel
110
+ - Carlos Dauden
107
111
 
108
- - Iván Todorovich <ivan.todorovich@camptocamp.com>
112
+ - Iván Todorovich <ivan.todorovich@camptocamp.com>
109
113
 
110
114
  Maintainers
111
115
  -----------
@@ -3,7 +3,7 @@
3
3
  # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
4
4
  {
5
5
  "name": "Extended view inheritance",
6
- "version": "17.0.1.0.1",
6
+ "version": "17.0.1.1.0",
7
7
  "development_status": "Mature",
8
8
  "author": "Therp BV,Odoo Community Association (OCA)",
9
9
  "license": "LGPL-3",
@@ -11,6 +11,5 @@
11
11
  "summary": "Adds more operators for view inheritance",
12
12
  "website": "https://github.com/OCA/server-tools",
13
13
  "depends": ["base"],
14
- "external_dependencies": {"python": ["astor"]},
15
14
  "demo": ["demo/ir_ui_view.xml"],
16
15
  }
@@ -3,11 +3,9 @@
3
3
  # Copyright 2021 Camptocamp SA (https://www.camptocamp.com).
4
4
  # Copyright 2023 Tecnativa - Carlos Dauden
5
5
  # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
6
-
7
6
  import ast
8
7
  import re
9
8
 
10
- import astor
11
9
  from lxml import etree
12
10
 
13
11
  from odoo import api, models
@@ -29,11 +27,8 @@ def ast_dict_update(source, update):
29
27
  raise TypeError("`update` must be an AST dict")
30
28
 
31
29
  def ast_key_eq(k1, k2):
32
- # python < 3.8 uses ast.Str; python >= 3.8 uses ast.Constant
33
- if type(k1) != type(k2):
30
+ if type(k1) is not type(k2):
34
31
  return False
35
- elif isinstance(k1, ast.Str):
36
- return k1.s == k2.s
37
32
  elif isinstance(k1, ast.Constant):
38
33
  return k1.value == k2.value
39
34
 
@@ -125,11 +120,7 @@ class IrUiView(models.Model):
125
120
  # Update node ast dict
126
121
  source_ast = ast_dict_update(source_ast, update_ast)
127
122
  # Dump the ast back to source
128
- # TODO: once odoo requires python >= 3.9; use `ast.unparse` instead
129
- node.attrib[attr_name] = astor.to_source(
130
- source_ast,
131
- pretty_source=lambda s: "".join(s).strip(),
132
- )
123
+ node.attrib[attr_name] = ast.unparse(source_ast).strip()
133
124
  return source
134
125
 
135
126
  @api.model
@@ -176,6 +167,7 @@ class IrUiView(models.Model):
176
167
  else:
177
168
  new_value = str(expression.AND([old_domain, new_domain]))
178
169
  new_value = self.str2var_domain_text(new_value)
170
+ old_value = "".join(old_value.splitlines())
179
171
  else:
180
172
  # We must ensure that the domain definition has not line breaks because
181
173
  # in update mode the domain cause an invalid syntax error
@@ -3,15 +3,16 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Extended view inheritance</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
10
10
  :Author: David Goodger (goodger@python.org)
11
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11
+ :Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
12
12
  :Copyright: This stylesheet has been placed in the public domain.
13
13
 
14
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
15
16
 
16
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
17
18
  customize this style sheet.
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
274
275
  margin-left: 2em ;
275
276
  margin-right: 2em }
276
277
 
277
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
278
279
  pre.code, code { background-color: #eeeeee }
279
280
  pre.code .comment, code .comment { color: #5C6576 }
280
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@ span.option {
300
301
  span.pre {
301
302
  white-space: pre }
302
303
 
303
- span.problematic {
304
+ span.problematic, pre.problematic {
304
305
  color: red }
305
306
 
306
307
  span.section-subtitle {
@@ -359,16 +360,21 @@ ul.auto-toc {
359
360
  </style>
360
361
  </head>
361
362
  <body>
362
- <div class="document" id="extended-view-inheritance">
363
- <h1 class="title">Extended view inheritance</h1>
363
+ <div class="document">
364
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="extended-view-inheritance">
370
+ <h1>Extended view inheritance</h1>
365
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
366
372
  !! This file is generated by oca-gen-addon-readme !!
367
373
  !! changes will be overwritten. !!
368
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:40e4b7b41dc5bf755dd39eedafb3e373b93138ec06e6e21c52c55857a4f28dd5
375
+ !! source digest: sha256:32445a96710100723618a7a88b44330e5d7bcad128b2ad3bcf08c3844ef7c3f7
370
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/17.0/base_view_inheritance_extension"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-17-0/server-tools-17-0-base_view_inheritance_extension"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/license-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/17.0/base_view_inheritance_extension"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-17-0/server-tools-17-0-base_view_inheritance_extension"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372
378
  <p>This module was written to make it simple to add custom operators for
373
379
  view inheritance.</p>
374
380
  <p><strong>Table of contents</strong></p>
@@ -386,7 +392,7 @@ view inheritance.</p>
386
392
  </ul>
387
393
  </div>
388
394
  <div class="section" id="usage">
389
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
395
+ <h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
390
396
  <p><strong>Change a python dictionary (context for example)</strong></p>
391
397
  <pre class="code xml literal-block">
392
398
  <span class="nt">&lt;field</span><span class="w"> </span><span class="na">position=</span><span class="s">&quot;attributes&quot;</span><span class="nt">&gt;</span><span class="w">
@@ -415,13 +421,13 @@ conditional changes</strong></p>
415
421
  </pre>
416
422
  </div>
417
423
  <div class="section" id="known-issues-roadmap">
418
- <h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
424
+ <h2><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h2>
419
425
  <ul class="simple">
420
426
  <li>Support an <tt class="docutils literal">eval</tt> attribute for our new node types.</li>
421
427
  </ul>
422
428
  </div>
423
429
  <div class="section" id="bug-tracker">
424
- <h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
430
+ <h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
425
431
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
426
432
  In case of trouble, please check there if your issue has already been reported.
427
433
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -429,15 +435,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
429
435
  <p>Do not contact contributors directly about support or help with technical issues.</p>
430
436
  </div>
431
437
  <div class="section" id="credits">
432
- <h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
438
+ <h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
433
439
  <div class="section" id="authors">
434
- <h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
440
+ <h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
435
441
  <ul class="simple">
436
442
  <li>Therp BV</li>
437
443
  </ul>
438
444
  </div>
439
445
  <div class="section" id="contributors">
440
- <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
446
+ <h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
441
447
  <ul class="simple">
442
448
  <li>Holger Brunn &lt;<a class="reference external" href="mailto:hbrunn&#64;therp.nl">hbrunn&#64;therp.nl</a>&gt;</li>
443
449
  <li>Ronald Portier &lt;<a class="reference external" href="mailto:rportier&#64;therp.nl">rportier&#64;therp.nl</a>&gt;</li>
@@ -450,9 +456,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
450
456
  </ul>
451
457
  </div>
452
458
  <div class="section" id="maintainers">
453
- <h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
459
+ <h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
454
460
  <p>This module is maintained by the OCA.</p>
455
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
461
+ <a class="reference external image-reference" href="https://odoo-community.org">
462
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
463
+ </a>
456
464
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
457
465
  mission is to support the collaborative development of Odoo features and
458
466
  promote its widespread use.</p>
@@ -461,5 +469,6 @@ promote its widespread use.</p>
461
469
  </div>
462
470
  </div>
463
471
  </div>
472
+ </div>
464
473
  </body>
465
474
  </html>
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-base_view_inheritance_extension
3
- Version: 17.0.1.0.1
3
+ Version: 17.0.1.1.0
4
4
  Requires-Python: >=3.10
5
- Requires-Dist: astor
6
5
  Requires-Dist: odoo>=17.0a,<17.1dev
7
6
  Summary: Adds more operators for view inheritance
8
7
  Home-page: https://github.com/OCA/server-tools
@@ -14,6 +13,11 @@ Classifier: Framework :: Odoo
14
13
  Classifier: Framework :: Odoo :: 17.0
15
14
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
16
15
  Classifier: Development Status :: 6 - Mature
16
+ Description-Content-Type: text/x-rst
17
+
18
+ .. image:: https://odoo-community.org/readme-banner-image
19
+ :target: https://odoo-community.org/get-involved?utm_source=readme
20
+ :alt: Odoo Community Association
17
21
 
18
22
  =========================
19
23
  Extended view inheritance
@@ -24,13 +28,13 @@ Extended view inheritance
24
28
  !! This file is generated by oca-gen-addon-readme !!
25
29
  !! changes will be overwritten. !!
26
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
- !! source digest: sha256:40e4b7b41dc5bf755dd39eedafb3e373b93138ec06e6e21c52c55857a4f28dd5
31
+ !! source digest: sha256:32445a96710100723618a7a88b44330e5d7bcad128b2ad3bcf08c3844ef7c3f7
28
32
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
33
 
30
34
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
31
35
  :target: https://odoo-community.org/page/development-status
32
36
  :alt: Mature
33
- .. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
37
+ .. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
34
38
  :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
35
39
  :alt: License: LGPL-3
36
40
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
@@ -92,7 +96,7 @@ conditional changes**
92
96
  Known issues / Roadmap
93
97
  ======================
94
98
 
95
- - Support an ``eval`` attribute for our new node types.
99
+ - Support an ``eval`` attribute for our new node types.
96
100
 
97
101
  Bug Tracker
98
102
  ===========
@@ -115,14 +119,14 @@ Authors
115
119
  Contributors
116
120
  ------------
117
121
 
118
- - Holger Brunn <hbrunn@therp.nl>
119
- - Ronald Portier <rportier@therp.nl>
120
- - `Tecnativa <https://www.tecnativa.com>`__:
122
+ - Holger Brunn <hbrunn@therp.nl>
123
+ - Ronald Portier <rportier@therp.nl>
124
+ - `Tecnativa <https://www.tecnativa.com>`__:
121
125
 
122
- - Sergio Teruel
123
- - Carlos Dauden
126
+ - Sergio Teruel
127
+ - Carlos Dauden
124
128
 
125
- - Iván Todorovich <ivan.todorovich@camptocamp.com>
129
+ - Iván Todorovich <ivan.todorovich@camptocamp.com>
126
130
 
127
131
  Maintainers
128
132
  -----------
@@ -1,6 +1,6 @@
1
- odoo/addons/base_view_inheritance_extension/README.rst,sha256=vfEDP8o-5Cdsr5xCkCIh3KyYd5TYI2r_VKvfw8oZcJQ,4035
1
+ odoo/addons/base_view_inheritance_extension/README.rst,sha256=PGPEk92OTHrGjEh32Hvf0VGpu5VYrwjyeFQ4gfRPXNo,4191
2
2
  odoo/addons/base_view_inheritance_extension/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/base_view_inheritance_extension/__manifest__.py,sha256=kI3HFjxOHFmHuHpqHLUa1O8WEQ2FIkioFRN6SSK7kRw,616
3
+ odoo/addons/base_view_inheritance_extension/__manifest__.py,sha256=G8AnrtezsjmCTvYNtQ6m0qqn3n-5uW5RdlDfYmF_-qI,564
4
4
  odoo/addons/base_view_inheritance_extension/demo/ir_ui_view.xml,sha256=MHPVOGOM6XnNOTsq0ylz1B5r0sPJpRKHLan3K2mZ6sA,1200
5
5
  odoo/addons/base_view_inheritance_extension/i18n/base_view_inheritance_extension.pot,sha256=B5ae18bfXVMomBlVh0Bf5Su6Q5urtlT2bKWa0Rav7UE,850
6
6
  odoo/addons/base_view_inheritance_extension/i18n/ca.po,sha256=xFKkpPiT_RVTTR0H7ZzB2PW6M7aDhRzYhdiCoiRq6mY,1262
@@ -12,16 +12,16 @@ odoo/addons/base_view_inheritance_extension/i18n/it.po,sha256=UWxqdWqJePuJaQNGgQ
12
12
  odoo/addons/base_view_inheritance_extension/i18n/sl.po,sha256=EY6zKcR8nRRsfpjrKK2_CVqFXnUVPjSBOAkI4-voRYw,1265
13
13
  odoo/addons/base_view_inheritance_extension/i18n/tr.po,sha256=xaYd2V2mHhQIeLqUpsE4VL3mHbT0DQVNbT9_jCXLc0I,1272
14
14
  odoo/addons/base_view_inheritance_extension/models/__init__.py,sha256=SjKfc8ocbCImvP5DpGQbS0hWmQRYPjtzJdyio6TPII0,25
15
- odoo/addons/base_view_inheritance_extension/models/ir_ui_view.py,sha256=utESRn6fjo0Xt6YFlmM4yprEemfgpYYpBAsVjU3IVCU,8043
15
+ odoo/addons/base_view_inheritance_extension/models/ir_ui_view.py,sha256=z2SRxWPxskpoOoFO3Qo6qnvzCMU4x6I0Whhb2s3v4vQ,7787
16
16
  odoo/addons/base_view_inheritance_extension/readme/CONTRIBUTORS.md,sha256=AplbG1Uhen3Vibr66YJ5c3DidJ2dCK6dWORzEOc_De8,212
17
17
  odoo/addons/base_view_inheritance_extension/readme/DESCRIPTION.md,sha256=TC-vXmaSQ5oo7nNl5jxSyurQiz2597hDzQirRGw73BI,88
18
18
  odoo/addons/base_view_inheritance_extension/readme/ROADMAP.md,sha256=79XqQ49EvpKp11-P-rimu8Mwklpwor3rkWKFPym9YbA,54
19
19
  odoo/addons/base_view_inheritance_extension/readme/USAGE.md,sha256=g7ZkBJmm4ldDD-tkQjlzW7WpvssmBi23Dj2KCUuxlug,748
20
20
  odoo/addons/base_view_inheritance_extension/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
21
- odoo/addons/base_view_inheritance_extension/static/description/index.html,sha256=ZE5Hb_uamAH-HFiTTh5sd4v5hFZPULVG91jDJnRqXeE,15436
21
+ odoo/addons/base_view_inheritance_extension/static/description/index.html,sha256=O8O6mIN0WiiL0Wp045jD0ZwbNUVCgoSYCdr_fBXOssA,15731
22
22
  odoo/addons/base_view_inheritance_extension/tests/__init__.py,sha256=kTcGsgnWhpM7vII3sEdNX5XVxDHHqRc5KdrxInG6GSw,51
23
23
  odoo/addons/base_view_inheritance_extension/tests/test_base_view_inheritance_extension.py,sha256=53qfa3zOJGfmzq282dgX_3kCBDEwT8Wrv5vTP2AwHxw,8635
24
- odoo_addon_base_view_inheritance_extension-17.0.1.0.1.dist-info/METADATA,sha256=-fEvK0ULQObRD1FlGY8V-i0cX-Flklhk83C1DJSCtPA,4653
25
- odoo_addon_base_view_inheritance_extension-17.0.1.0.1.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
26
- odoo_addon_base_view_inheritance_extension-17.0.1.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
27
- odoo_addon_base_view_inheritance_extension-17.0.1.0.1.dist-info/RECORD,,
24
+ odoo_addon_base_view_inheritance_extension-17.0.1.1.0.dist-info/METADATA,sha256=pRniSDBP3RSHmTbmnRUwMzNb8jiio0nstnCRMU3cgbQ,4825
25
+ odoo_addon_base_view_inheritance_extension-17.0.1.1.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
26
+ odoo_addon_base_view_inheritance_extension-17.0.1.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
27
+ odoo_addon_base_view_inheritance_extension-17.0.1.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.0.1
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5