From 60d9aa6510afac9e5f7b55b9d3ff62d6772a1c80 Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Fri, 15 Dec 2017 15:42:32 -0800 Subject: [PATCH] [MIG] base_external_system: Upgrade to v11 * Perform standard v11 migration --- base_external_system/README.rst | 2 +- base_external_system/__init__.py | 1 - base_external_system/__manifest__.py | 3 +-- base_external_system/models/__init__.py | 1 - base_external_system/models/external_system.py | 1 - base_external_system/models/external_system_adapter.py | 1 - base_external_system/models/external_system_os.py | 1 - base_external_system/tests/__init__.py | 2 -- base_external_system/tests/common.py | 1 - base_external_system/tests/test_external_system.py | 1 - base_external_system/tests/test_external_system_adapter.py | 1 - base_external_system/tests/test_external_system_os.py | 1 - 12 files changed, 2 insertions(+), 14 deletions(-) diff --git a/base_external_system/README.rst b/base_external_system/README.rst index 4c7ee4cf..174de9fd 100755 --- a/base_external_system/README.rst +++ b/base_external_system/README.rst @@ -57,7 +57,7 @@ Configure external systems in Settings => Technical => External Systems .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/149/10.0 + :target: https://runbot.odoo-community.org/runbot/149/11.0 Bug Tracker =========== diff --git a/base_external_system/__init__.py b/base_external_system/__init__.py index fd02263c..0639de1b 100644 --- a/base_external_system/__init__.py +++ b/base_external_system/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). diff --git a/base_external_system/__manifest__.py b/base_external_system/__manifest__.py index 2f70b562..b1bcf852 100644 --- a/base_external_system/__manifest__.py +++ b/base_external_system/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). { "name": "Base External System", "summary": "Data models allowing for connection to external systems.", - "version": "10.0.1.0.1", + "version": "11.0.1.0.0", "category": "Base", "website": "https://laslabs.com/", "author": "LasLabs, Odoo Community Association (OCA)", diff --git a/base_external_system/models/__init__.py b/base_external_system/models/__init__.py index 3e2b372f..84d6fa27 100644 --- a/base_external_system/models/__init__.py +++ b/base_external_system/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import external_system from . import external_system_adapter from . import external_system_os diff --git a/base_external_system/models/external_system.py b/base_external_system/models/external_system.py index 75918c22..5816a020 100644 --- a/base_external_system/models/external_system.py +++ b/base_external_system/models/external_system.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). diff --git a/base_external_system/models/external_system_adapter.py b/base_external_system/models/external_system_adapter.py index 605eabd6..532e4a33 100644 --- a/base_external_system/models/external_system_adapter.py +++ b/base_external_system/models/external_system_adapter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). diff --git a/base_external_system/models/external_system_os.py b/base_external_system/models/external_system_os.py index 1e89d360..93ee921d 100644 --- a/base_external_system/models/external_system_os.py +++ b/base_external_system/models/external_system_os.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). diff --git a/base_external_system/tests/__init__.py b/base_external_system/tests/__init__.py index d7cd63b5..c91c801a 100644 --- a/base_external_system/tests/__init__.py +++ b/base_external_system/tests/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from . import test_external_system from . import test_external_system_adapter from . import test_external_system_os diff --git a/base_external_system/tests/common.py b/base_external_system/tests/common.py index 0c212359..df695719 100644 --- a/base_external_system/tests/common.py +++ b/base_external_system/tests/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/base_external_system/tests/test_external_system.py b/base_external_system/tests/test_external_system.py index e996b302..09c2ec22 100644 --- a/base_external_system/tests/test_external_system.py +++ b/base_external_system/tests/test_external_system.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/base_external_system/tests/test_external_system_adapter.py b/base_external_system/tests/test_external_system_adapter.py index d084cf14..7e322fc5 100644 --- a/base_external_system/tests/test_external_system_adapter.py +++ b/base_external_system/tests/test_external_system_adapter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/base_external_system/tests/test_external_system_os.py b/base_external_system/tests/test_external_system_os.py index 150a3bdb..33c36717 100644 --- a/base_external_system/tests/test_external_system_os.py +++ b/base_external_system/tests/test_external_system_os.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 LasLabs Inc. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).