* Rename manifest * Change openerp references to odoo * Bump version
@ -60,7 +60,7 @@ Usage
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/162/9.0
:target: https://runbot.odoo-community.org/runbot/162/10.0
Known Issues / Roadmap
======================
@ -5,7 +5,7 @@
{
'name': 'Kanban - Stage Support',
'summary': 'Provides stage model and abstract logic for inheritance',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'author': "LasLabs, Odoo Community Association (OCA)",
'category': 'base',
'depends': [
@ -2,7 +2,7 @@
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
from openerp import api, fields, models
from odoo import api, fields, models
class BaseKanbanAbstract(models.AbstractModel):
class BaseKanbanStage(models.Model):
@ -2,8 +2,8 @@
from openerp import models
from openerp.tests.common import TransactionCase
from odoo import models
from odoo.tests.common import TransactionCase
class BaseKanbanAbstractTester(models.Model):
class TestBaseKanbanStage(TransactionCase):