From 45e75f7473ceacd80b2fd76eb5bb0e899653479b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 5 Jun 2017 16:02:39 +0300 Subject: [PATCH] Copyright (c) 2014-present PlatformIO Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --- .coveragerc | 2 +- README.rst | 2 +- docs | 2 +- examples | 2 +- platformio/__init__.py | 2 +- platformio/__main__.py | 2 +- platformio/app.py | 2 +- platformio/builder/__init__.py | 2 +- platformio/builder/main.py | 2 +- platformio/builder/tools/__init__.py | 2 +- platformio/builder/tools/pioide.py | 2 +- platformio/builder/tools/piolib.py | 2 +- platformio/builder/tools/piomisc.py | 2 +- platformio/builder/tools/pioplatform.py | 2 +- platformio/builder/tools/pioupload.py | 2 +- platformio/builder/tools/piowinhooks.py | 2 +- platformio/builder/tools/platformio.py | 2 +- platformio/commands/__init__.py | 2 +- platformio/commands/account.py | 2 +- platformio/commands/boards.py | 2 +- platformio/commands/ci.py | 2 +- platformio/commands/debug.py | 2 +- platformio/commands/device.py | 2 +- platformio/commands/init.py | 2 +- platformio/commands/lib.py | 2 +- platformio/commands/platform.py | 2 +- platformio/commands/remote.py | 2 +- platformio/commands/run.py | 2 +- platformio/commands/settings.py | 2 +- platformio/commands/test.py | 2 +- platformio/commands/update.py | 2 +- platformio/commands/upgrade.py | 2 +- platformio/downloader.py | 2 +- platformio/exception.py | 2 +- platformio/ide/__init__.py | 2 +- platformio/ide/projectgenerator.py | 2 +- platformio/maintenance.py | 2 +- platformio/managers/__init__.py | 2 +- platformio/managers/core.py | 2 +- platformio/managers/lib.py | 2 +- platformio/managers/package.py | 2 +- platformio/managers/platform.py | 2 +- platformio/telemetry.py | 2 +- platformio/unpacker.py | 2 +- platformio/util.py | 2 +- platformio/vcsclient.py | 2 +- scripts/99-platformio-udev.rules | 2 +- scripts/docspregen.py | 8 ++++---- scripts/fixsymlink.py | 2 +- scripts/get-platformio.py | 2 +- setup.py | 2 +- tests/commands/test_boards.py | 2 +- tests/commands/test_ci.py | 2 +- tests/commands/test_init.py | 2 +- tests/commands/test_lib.py | 2 +- tests/commands/test_platform.py | 2 +- tests/commands/test_settings.py | 2 +- tests/commands/test_test.py | 2 +- tests/commands/test_update.py | 2 +- tests/conftest.py | 2 +- tests/test_examples.py | 2 +- tests/test_ino2cpp.py | 2 +- tests/test_maintenance.py | 2 +- tests/test_managers.py | 2 +- tests/test_pkgmanifest.py | 2 +- tox.ini | 4 ++-- 66 files changed, 70 insertions(+), 70 deletions(-) diff --git a/.coveragerc b/.coveragerc index 80716d3d..01ec788a 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/README.rst b/README.rst index be8fb1b8..3b136a36 100644 --- a/README.rst +++ b/README.rst @@ -191,7 +191,7 @@ See `contributing guidelines +Copyright (c) 2014-present PlatformIO The PlatformIO is licensed under the permissive Apache 2.0 license, so you can use it in both commercial and personal projects with confidence. diff --git a/docs b/docs index 7bad8d98..41943b7d 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 7bad8d98f29b21a84f945f5651cee77fbcd1d5f2 +Subproject commit 41943b7d599e63c71de76bab40a9233077fdfde2 diff --git a/examples b/examples index 9d57e3c8..18f010d8 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit 9d57e3c84dd738dcb1597a6d8611d9f6feca327d +Subproject commit 18f010d8e2b112ba3140489c245e7ca0958d6828 diff --git a/platformio/__init__.py b/platformio/__init__.py index 9a299933..fb0e5549 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/__main__.py b/platformio/__main__.py index bb5f9dc8..b1872fd2 100644 --- a/platformio/__main__.py +++ b/platformio/__main__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/app.py b/platformio/app.py index 6e44e5d0..704db38a 100644 --- a/platformio/app.py +++ b/platformio/app.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/__init__.py b/platformio/builder/__init__.py index 95899c71..b0514903 100644 --- a/platformio/builder/__init__.py +++ b/platformio/builder/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/main.py b/platformio/builder/main.py index 79b25f9e..31fc8076 100644 --- a/platformio/builder/main.py +++ b/platformio/builder/main.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/__init__.py b/platformio/builder/tools/__init__.py index 95899c71..b0514903 100644 --- a/platformio/builder/tools/__init__.py +++ b/platformio/builder/tools/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/pioide.py b/platformio/builder/tools/pioide.py index 11a57474..d0b27286 100644 --- a/platformio/builder/tools/pioide.py +++ b/platformio/builder/tools/pioide.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/piolib.py b/platformio/builder/tools/piolib.py index 4798f24d..2db543a6 100644 --- a/platformio/builder/tools/piolib.py +++ b/platformio/builder/tools/piolib.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/piomisc.py b/platformio/builder/tools/piomisc.py index c382a1eb..1f689b91 100644 --- a/platformio/builder/tools/piomisc.py +++ b/platformio/builder/tools/piomisc.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/pioplatform.py b/platformio/builder/tools/pioplatform.py index da15af18..3fbe607e 100644 --- a/platformio/builder/tools/pioplatform.py +++ b/platformio/builder/tools/pioplatform.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/pioupload.py b/platformio/builder/tools/pioupload.py index d715692a..e666276c 100644 --- a/platformio/builder/tools/pioupload.py +++ b/platformio/builder/tools/pioupload.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/piowinhooks.py b/platformio/builder/tools/piowinhooks.py index c1b0895a..5ac19f5d 100644 --- a/platformio/builder/tools/piowinhooks.py +++ b/platformio/builder/tools/piowinhooks.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/builder/tools/platformio.py b/platformio/builder/tools/platformio.py index 1f2186cf..3998418d 100644 --- a/platformio/builder/tools/platformio.py +++ b/platformio/builder/tools/platformio.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/__init__.py b/platformio/commands/__init__.py index 95899c71..b0514903 100644 --- a/platformio/commands/__init__.py +++ b/platformio/commands/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/account.py b/platformio/commands/account.py index b2bf9bb0..d728a558 100644 --- a/platformio/commands/account.py +++ b/platformio/commands/account.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/boards.py b/platformio/commands/boards.py index 5f5921c9..0d9d6015 100644 --- a/platformio/commands/boards.py +++ b/platformio/commands/boards.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/ci.py b/platformio/commands/ci.py index 82784eb4..0db1daa9 100644 --- a/platformio/commands/ci.py +++ b/platformio/commands/ci.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/debug.py b/platformio/commands/debug.py index 1a6e49b5..e43aeed1 100644 --- a/platformio/commands/debug.py +++ b/platformio/commands/debug.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/device.py b/platformio/commands/device.py index cba2054c..691180b6 100644 --- a/platformio/commands/device.py +++ b/platformio/commands/device.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/init.py b/platformio/commands/init.py index 0ee751c0..230594f1 100644 --- a/platformio/commands/init.py +++ b/platformio/commands/init.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/lib.py b/platformio/commands/lib.py index 45984157..c9862ace 100644 --- a/platformio/commands/lib.py +++ b/platformio/commands/lib.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/platform.py b/platformio/commands/platform.py index 70ac4b39..0e13610c 100644 --- a/platformio/commands/platform.py +++ b/platformio/commands/platform.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/remote.py b/platformio/commands/remote.py index 1945bf87..9b7ad5fb 100644 --- a/platformio/commands/remote.py +++ b/platformio/commands/remote.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/run.py b/platformio/commands/run.py index 5f6f32c1..4a02e8bc 100644 --- a/platformio/commands/run.py +++ b/platformio/commands/run.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/settings.py b/platformio/commands/settings.py index 08649221..a29d3997 100644 --- a/platformio/commands/settings.py +++ b/platformio/commands/settings.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/test.py b/platformio/commands/test.py index 34b30ec9..30a5de6c 100644 --- a/platformio/commands/test.py +++ b/platformio/commands/test.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/update.py b/platformio/commands/update.py index 41d0185d..65c44fac 100644 --- a/platformio/commands/update.py +++ b/platformio/commands/update.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/commands/upgrade.py b/platformio/commands/upgrade.py index cc735393..a23c695a 100644 --- a/platformio/commands/upgrade.py +++ b/platformio/commands/upgrade.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/downloader.py b/platformio/downloader.py index 356413c2..f4feaa61 100644 --- a/platformio/downloader.py +++ b/platformio/downloader.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/exception.py b/platformio/exception.py index 346156c7..8743e784 100644 --- a/platformio/exception.py +++ b/platformio/exception.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/ide/__init__.py b/platformio/ide/__init__.py index 95899c71..b0514903 100644 --- a/platformio/ide/__init__.py +++ b/platformio/ide/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/ide/projectgenerator.py b/platformio/ide/projectgenerator.py index 6020a7e4..b03cc772 100644 --- a/platformio/ide/projectgenerator.py +++ b/platformio/ide/projectgenerator.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/maintenance.py b/platformio/maintenance.py index 183e3dd6..0900b0b5 100644 --- a/platformio/maintenance.py +++ b/platformio/maintenance.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/managers/__init__.py b/platformio/managers/__init__.py index 95899c71..b0514903 100644 --- a/platformio/managers/__init__.py +++ b/platformio/managers/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 6b8054f6..7849f05b 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/managers/lib.py b/platformio/managers/lib.py index 32cf6308..fea2a62a 100644 --- a/platformio/managers/lib.py +++ b/platformio/managers/lib.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/managers/package.py b/platformio/managers/package.py index 82d8c901..5d4386a6 100644 --- a/platformio/managers/package.py +++ b/platformio/managers/package.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/managers/platform.py b/platformio/managers/platform.py index ad2800de..e5f8f47e 100644 --- a/platformio/managers/platform.py +++ b/platformio/managers/platform.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/telemetry.py b/platformio/telemetry.py index b614b4f7..3a2b4aad 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/unpacker.py b/platformio/unpacker.py index 67ca78a7..036dcc4c 100644 --- a/platformio/unpacker.py +++ b/platformio/unpacker.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/util.py b/platformio/util.py index b8fc8aa5..5b3d2302 100644 --- a/platformio/util.py +++ b/platformio/util.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/platformio/vcsclient.py b/platformio/vcsclient.py index 8a35e794..e79da215 100644 --- a/platformio/vcsclient.py +++ b/platformio/vcsclient.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/99-platformio-udev.rules b/scripts/99-platformio-udev.rules index 3e8b63a0..7c7b410a 100644 --- a/scripts/99-platformio-udev.rules +++ b/scripts/99-platformio-udev.rules @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/docspregen.py b/scripts/docspregen.py index 00c67901..8b35f9ef 100644 --- a/scripts/docspregen.py +++ b/scripts/docspregen.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -165,7 +165,7 @@ def generate_platform(name): lines = [] lines.append( - """.. Copyright 2014-present PlatformIO + """.. Copyright (c) 2014-present PlatformIO Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -271,7 +271,7 @@ def generate_framework(type_, data): lines = [] lines.append( - """.. Copyright 2014-present PlatformIO + """.. Copyright (c) 2014-present PlatformIO Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -395,7 +395,7 @@ def update_embedded_boards(): lines = [] lines.append( - """.. Copyright 2014-present PlatformIO + """.. Copyright (c) 2014-present PlatformIO Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/scripts/fixsymlink.py b/scripts/fixsymlink.py index 44a628fd..a73a0109 100644 --- a/scripts/fixsymlink.py +++ b/scripts/fixsymlink.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/get-platformio.py b/scripts/get-platformio.py index b70c9598..be6a4c87 100644 --- a/scripts/get-platformio.py +++ b/scripts/get-platformio.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index d7ed7447..39046c36 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_boards.py b/tests/commands/test_boards.py index 6b216146..c44ff438 100644 --- a/tests/commands/test_boards.py +++ b/tests/commands/test_boards.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_ci.py b/tests/commands/test_ci.py index 884e9b50..04daeb33 100644 --- a/tests/commands/test_ci.py +++ b/tests/commands/test_ci.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_init.py b/tests/commands/test_init.py index 6f366f90..4b7c0a94 100644 --- a/tests/commands/test_init.py +++ b/tests/commands/test_init.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_lib.py b/tests/commands/test_lib.py index 104213af..31ed9809 100644 --- a/tests/commands/test_lib.py +++ b/tests/commands/test_lib.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_platform.py b/tests/commands/test_platform.py index fe29ce58..bdc50916 100644 --- a/tests/commands/test_platform.py +++ b/tests/commands/test_platform.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_settings.py b/tests/commands/test_settings.py index bec21889..c6cd33da 100644 --- a/tests/commands/test_settings.py +++ b/tests/commands/test_settings.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index e7086290..592bce0c 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/commands/test_update.py b/tests/commands/test_update.py index f17f5bbd..b8309fb8 100644 --- a/tests/commands/test_update.py +++ b/tests/commands/test_update.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/conftest.py b/tests/conftest.py index 001dfc8e..b407b328 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_examples.py b/tests/test_examples.py index 42ff2b5e..86bc7741 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_ino2cpp.py b/tests/test_ino2cpp.py index 337eee72..0ef6e194 100644 --- a/tests/test_ino2cpp.py +++ b/tests/test_ino2cpp.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_maintenance.py b/tests/test_maintenance.py index fd71acf1..9fd7fd6b 100644 --- a/tests/test_maintenance.py +++ b/tests/test_maintenance.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_managers.py b/tests/test_managers.py index a9320def..e0d0b7a9 100644 --- a/tests/test_managers.py +++ b/tests/test_managers.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_pkgmanifest.py b/tests/test_pkgmanifest.py index f70dccde..a34d6864 100644 --- a/tests/test_pkgmanifest.py +++ b/tests/test_pkgmanifest.py @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tox.ini b/tox.ini index 406d179c..7ced7a1c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,4 @@ -# Copyright 2014-present PlatformIO +# Copyright (c) 2014-present PlatformIO # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ usedevelop = True deps = isort flake8 - yapf<0.16 + yapf<0.17 pylint pytest commands = python --version