Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
exclude: |
(?x)
# NOT INSTALLABLE ADDONS
^connector_base_product/|
# END NOT INSTALLABLE ADDONS
# Files and folders generated by bots, to avoid loops
^setup/|/static/description/index\.html$|
Expand Down
4 changes: 2 additions & 2 deletions connector_base_product/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "Connector Base Product",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"author": "Openerp Connector Core Editors, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/connector",
"license": "LGPL-3",
Expand All @@ -13,5 +13,5 @@
"product",
],
"data": ["views/product_view.xml"],
"installable": False,
"installable": True,
}
1 change: 1 addition & 0 deletions connector_base_product/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
* Guewen Baconnier (Camptocamp)
* Atchuthan, Sodexis
* Florent Thomas (Mind and Go)
* Fernando La Chica <fernandolachica@gmail.com>
6 changes: 6 additions & 0 deletions setup/connector_base_product/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)