mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 13:34:54 +01:00
Py3 Updates
This commit is contained in:
parent
7a43231c43
commit
af35c9258e
3 changed files with 2 additions and 8 deletions
|
@ -15,12 +15,6 @@ matrix:
|
||||||
- script/ci-custom.py
|
- script/ci-custom.py
|
||||||
- flake8 esphome
|
- flake8 esphome
|
||||||
- pylint esphome
|
- pylint esphome
|
||||||
- python: "3.5.3"
|
|
||||||
env: TARGET=Lint3.5
|
|
||||||
script:
|
|
||||||
- script/ci-custom.py
|
|
||||||
- flake8 esphome
|
|
||||||
- pylint esphome
|
|
||||||
- python: "3.5"
|
- python: "3.5"
|
||||||
env: TARGET=Test3.5
|
env: TARGET=Test3.5
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -7,7 +7,7 @@ import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from esphome.core import CORE
|
from esphome.core import CORE
|
||||||
from esphome.py_compat import text_type, decode_text
|
from esphome.py_compat import decode_text
|
||||||
from esphome.util import run_external_command, run_external_process
|
from esphome.util import run_external_command, run_external_process
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
|
@ -9,7 +9,7 @@ import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from esphome import const
|
from esphome import const
|
||||||
from esphome.py_compat import IS_PY2, IS_PY3
|
from esphome.py_compat import IS_PY2
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue