Release v6.0

This commit is contained in:
wilson gomez 2021-07-22 09:16:12 -05:00
parent 8633e3d426
commit 271f1e566e
3 changed files with 5 additions and 7 deletions

View File

@ -3,12 +3,12 @@
#the full copyright notices and license terms.
from trytond.pool import Pool
from .product import Product, Category, CategoryImage
from . import product
def register():
Pool.register(
Product,
Category,
CategoryImage,
product.Product,
product.Category,
product.CategoryImage,
module='product_image', type_='model')

View File

@ -4,8 +4,6 @@
from trytond.model import ModelView, ModelSQL, fields
from trytond.pool import PoolMeta
__all__ = ['Product', 'Category', 'CategoryImage']
class Product(metaclass=PoolMeta):
__name__ = 'product.product'

View File

@ -1,5 +1,5 @@
[tryton]
version=5.0.1
version=6.0.0
depends:
product
xml: